Data visualization is a huge topic. And if you're not using it in your work, you're missing out. By the way, if you haven't snagged your copy of The Data Analytics Portfolio Playbook, now's the time! Get up and running in two weeks or less. Data visualizations are awesome for your portfolio. The playbook includes everything you need to create an awesome portfolio -- including how to host for free. Here's a specific example of what's possible when you follow the proven playbook. This is because it's MUCH better to show your work than not to. Quick results without cumbersome business intelligence tools. Don't get me wrong: I love Tableau. But there's a problem: Most people think you have to have a tool like Tableau to create interactive dashboards. And that's not true. You can create a "quick and dirty" interactive dashboard with Python and Plotly.
Python + Plotly makes your work shine. Sure, you can use Excel to create bar charts. And sometimes Excel is the right tool for the job. But there are times when you don't want to:
The step-by-step process to work faster and easier. In this guide, you will learn:
Before we get started, make sure you have Google Colab set up and ready to go. You can follow along using this Python Notebook as a template to guide you. Alright, let's visualize! Step 1: Gather and Inspect Your DataFirst things first, let's import the libraries we'll use. Paste this code into a new Google Collab notebook cell and run it.
Step 2: Clean and PrepareNow that the data is loaded and is looking good, let's clean it up. In this step, we convert the date column to a datetime type and clean up any missing or invalid data.
Step 3: Trend AnalysisBefore we create the interactive dashboard, take a look at the data in a simple chart just to make sure things are looking good and our date columns are all set for visualization. This step is technically optional but good to prevent you from having to troubleshoot later down the road.
Step 4: Dig Deeper into CategoriesNow that we have a trend line, let's dig a bit deeper to get counts for different categories. This is a quick step, but it shows the flexibility of Python. You can update this to count anything in the data set and then visualize it in the next steps.
Step 5: Combine the charts into an interactive dashboardNext, let's take the visualizations and put them into a dashboard. This is a big step and there's a lot going on. But let's break it down, step by step:
And here's the code:
Step 6: Showcase Your WorkFinally, let's create the dashboard file for easy viewing:
Here's where to find it in Google Colab: And here's the final result -- well done! (Click here if you can't see the animated GIF below) Great job! The idea for this newsletter came directly from a reader β just like you! βTake 3 minutes to let me know what you want help with next.β Until next time, keep exploring and happy visualizing! Brian Whenever you're ready, here's how I can help you:
|
You are receiving this because you signed up for Starting with Data, purchased one of my data analytics products, or enrolled in one of my data analytics courses. Unsubscribe at any time using the link below. 600 1st Ave, Ste 330 PMB 92768, Seattle, WA 98104-2246 |
Learn to build analytics projects with SQL, Tableau, Excel, and Python. For data analysts looking to level up their career and complete beginners looking to get started. No fluff. No theory. Just step-by-step tutorials anyone can follow.
Hello Reader, Almost every business question boils down to one of two things: "How many?" (COUNT) "How much?" (SUM) How many customers booked this month? How much revenue did we generate? How many trips were cancelled? How much did we lose? Once you're comfortable with COUNT and SUM, you can answer the majority of questions that come your way (like sales analytics using SQL). Let me show you both patterns using a real business scenario. The Scenario Your operations manager asks: "Give me a...
HeyReader, Most analysts never think to ask: "Why are our customers cancelling?" Everyone looks at bookings. Everyone reports revenue. But the data hiding in your cancelled orders often tells a more important story than your completed ones. And analysts that want to move from beginner to intermediate SQL skill level have an unfair advantage here. Because there's a sequence to work through this kind of problem. That's what we're covering here. At Summit Adventures (the fake adventure tourism...
Hey Reader, Imagine you're a marketing analyst and your marketing director walks over and says: "I need our customers broken into spending tiers (VIP, Standard, and Low Value) so I can send different emails to each group." You have the data. But every customer just has a dollar amount. There's no "tier" column in the database. How do you create categories that don't exist yet? This is where CASE WHEN becomes one of the most useful tools in your SQL toolkit. The problem is that raw data...