├── README.md ├── YouTube_Anaylsis.ipynb └── requirements.txt /README.md: -------------------------------------------------------------------------------- 1 | # Pandas Tutorial: Analyzing Data with Python 2 | Ready to learn pandas, the most powerful data analysis library in Python? In this tutorial, we will analyse a real-world dataset - my YouTube data. We start by reading and inspecting the data before doing exploratory data analysis (EDA). Once we understand the data well, I will show you advanced techniques to clean up the dataframe. To do so, we will take advantage of chaining pandas methods to keep the code clean and organised. With our clean dataframe, we will then perform a timeseries analysis and plot our findings in interactive charts. 3 | 4 | 5 | ## Video Tutorial 6 | [![YouTube Video](https://img.youtube.com/vi/RXEP1R_ZNrs/0.jpg)](https://youtu.be/RXEP1R_ZNrs) 7 | 8 | 9 | 10 | 11 | ## 🤓 Check Out My Excel Add-ins 12 | I've developed some handy Excel add-ins that you might find useful: 13 | 14 | - 📊 **[Dashboard Add-in](https://pythonandvba.com/grafly)**: Easily create interactive and visually appealing dashboards. 15 | - 🎨 **[Cartoon Charts Add-In](https://pythonandvba.com/cuteplots)**: Create engaging and fun cartoon-style charts. 16 | - 🤪 **[Emoji Add-in](https://pythonandvba.com/emojify)**: Add a touch of fun to your spreadsheets with emojis. 17 | - 🛠️ **[MyToolBelt Add-in](https://pythonandvba.com/mytoolbelt)**: A versatile toolbelt for Excel, featuring: 18 | - Creation of Pandas DataFrames and Jupyter Notebooks from Excel ranges 19 | - ChatGPT integration for advanced data analysis 20 | - And much more! 21 | 22 | 23 | 24 | ## 🤝 Connect with Me 25 | - 📺 **YouTube:** [CodingIsFun](https://youtube.com/c/CodingIsFun) 26 | - 🌐 **Website:** [PythonAndVBA](https://pythonandvba.com) 27 | - 💬 **Discord:** [Join our Community](https://pythonandvba.com/discord) 28 | - 💼 **LinkedIn:** [Connect with me](https://www.linkedin.com/in/sven-bosau/) 29 | - 📸 **Instagram:** [Follow me](https://www.instagram.com/codingisfun_official/) 30 | 31 | ## Support My Work 32 | Love my content and want to show appreciation? Why not [buy me a coffee](https://pythonandvba.com/coffee-donation) to fuel my creative engine? Your support means the world to me! 😊 33 | 34 | [![ko-fi](https://ko-fi.com/img/githubbutton_sm.svg)](https://pythonandvba.com/coffee-donation) 35 | 36 | ## Feedback 37 | Got some thoughts or suggestions? Don't hesitate to reach out to me at contact@pythonandvba.com. I'd love to hear from you! 💡 38 | ![Logo](https://www.pythonandvba.com/banner-img) 39 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | matplotlib==3.3.3 2 | seaborn==0.11.1 3 | plotly==4.14.3 4 | wordcloud==1.8.1 5 | pandas==1.4.3 6 | skimpy==0.0.6 --------------------------------------------------------------------------------