Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
August 17, 2022 07:05 pm GMT

Visualize YouTube Data with Plotly Express

Prerequisites: Python fundamentals, Microsoft Excel
Versions: Python 3.10, Plotly 5.9
Read Time: 45 minutes

Introduction

So you want to learn about making data visualizations, huh? Well, youre in the right spot!

Data visualization is translating data into a visual representation to make it easier on the human eye. It makes communicating complex ideas more effective, quick, and easy to follow. It is super important as it makes data more accessible and digestible.

Plotly Express makes it easy to begin learning this process. It is an easy-to-use, high-level module that creates common figures such as line graphs and scatter plots. Plotly was actually the first library I used when I started my journey in data!

In this tutorial, we will create data visualizations of popular YouTube channels using Python, Plotly Express, and Google Colab. We will use a histogram to look at subscriber counts, a pie chart to compare video categories, and a box plot to find patterns in the years that creators started YouTubing.

Lets get into it (yuh)!

Setting Up

First, visit colab.research.google.com and start a "New notebook".

After that, make sure you have the latest version of Python on your machine. You can check this by typing $ python --version in the Windows command prompt or the terminal on Mac and Linux. It would be best if you were running Python version 3.10 or above.

Once you have checked this, pull up the Plotly Express docs page. It will come in handy while working. Finally, download the dataset used for this tutorial from down below. There would not be a data visualization without some data!

About the Dataset

For this tutorial, we will use the "Most Subscribed YouTube Channels" dataset from Kaggle. The file is called most_subscribed_youtube_channels.csv. You can download it here.

As the name suggests, it contains data about the top 1000 YouTube channels.

There are seven columns:

  • rank: Rank of the channel as per total subscribers (1-1000)
  • youtuber: Channel name
  • subscribers: Total number of followers
  • video views: Total views of all the videos combined
  • video count: Number of videos uploaded
  • category: Channel genre
  • started: The year that the channel started

It looks something like:

Dataset

We have made acquaintance with our dataset. Now, lets jump into some visualizations!

Importing the Data to Google Colab

First things first (Im the realest), we are going to import our data into our notebook. After downloading your dataset, you should return to your handy dandy Google Colab notebook.

Inside the notebook, go ahead and input the following:

from google.colab import filesuploaded = files.upload()

Press the play button, and there will be a prompt to upload files from your computer. Look in your local drive for the dataset (most_subscribed_youtube_channels.csv) and upload the file.

You should have something like this!

import data

Importing Pandas and Declaring a DataFrame

Pandas is the most widely used open source Python package to perform data analytics. To use it, we will import pandas as pd. pd serves as the alias (nickname) for referring to the Pandas package in our program.

After importing Pandas, we will need to import io. Doing this will let us import our data into a DataFrame and work with file-related input/output operations:

import pandas as pdimport io

Once you have done that, we need to create a Pandas DataFrame. A Pandas DataFrame stores data as a 2-dimensional table in Python. As analysts, we want to be quick in generating graphs, so we can take our time analyzing and reporting our findings. And DataFrames are a great way to structure our data; they are fast, easy to use, and integral to the Python data science ecosystem. You can use any shorthand name for the DataFrame variable, but for this example, we will use df.

The df variable will store the DataFrame returned from the pd.read_csv() method. To do that, you would put in pd.read_csv(io.BytesIO(uploaded[file_name.csv])). This line reads our CSV (comma-separated value) file and returns it as a DataFrame.

And lastly, use the display() function to show the df DataFrame.

You should have the following after completing the steps above:

import pandas as pdimport iodf = pd.read_csv(io.BytesIO(uploaded["most_subscribed_youtube_channels.csv"]))display(df)

Your notebook should now look like this:

import pandas

Notice how in some of the numeric columns, there are commas in between the numbers? Let's take out the commas using:

df = df.replace(",", "")display(df)

Here, we are using the .replace() method to replace all occurrences of commas "," with nothing "".

For the next section, we will be creating three different graphs:

  1. A histogram to look at subscriber count.
  2. A pie chart to analyze video categories.
  3. A box plot to explore the different years people start YouTubing.

Lets kick things off with the histogram!

Section 1: Make a Histogram

Normally, people will import their library during setup. However, I like to have my imports and graph code together. Therefore, we are going to import the Plotly Python package by writing import plotly.express as px. px will serve as the alias for the package in this portion of the process. After you have imported Plotly Express, we will be ready to start on our histogram!

The import statement should be as follows:

import plotly.express as px

Creating a histogram in Plotly Express is so much easier than you think. Do you know how we create them? Drum roll, please

fig = px.histogram(df, x="subscribers", title="Subscriber Count")fig.show()

Alright, lets break down this line of code.

First, we need to declare a variable fig. fig will allow us to work with the Plotly Express library that is accessible using the px alias. Remember px from earlier? We use it to determine the type of graph we want to utilize. For example, we typed out px.histogram() because we wanted to plot a histogram.

The arguments passed in the method call are:

  • The DataFrame df.
  • The x value that needs to be displayed in the histogram. Since we are looking at subscriber count in this exercise, the x value will be the name of the column that contains the subscribers data in the DataFrame.
  • The name for our graph. We do this through the title variable. Make sure you put quotation marks around them since they are considered a string.

After we do this, we will use fig.show(), and the notebook should display something like this!

histogram

There is so much going on right now in the histogram, so lets take it step by step.

The first thing we want to do is pay attention to our axes. On the x-axis, we have our variable subscribers. On the y-axis, we have the count of channels with subscribers in that range. In histograms, the bars show us frequency rather than a solid number of things. For our example, we can see a high frequency of YouTubers with between 0 and 40 million subscribers.

Also, a quick shoutout to the channel all the way at the end that made it to 200 million (T-Series). We already know their fan base is grinding.

Section 2: Make a Pie Chart

We are going to do the same thing we did before, but this time we will create a pie chart. For this pie chart, we are going to analyze the different video categories and the top channel they belong to.

All we need to do is replace px.histogram(df, x="subscribers") with px.pie(df, values="subscribers" names="category", title="YouTube Categories"):

import plotly.express as pxfig = px.pie(df, values="subscribers", names="category", title="YouTube Categories")fig.show()

However, this time we need to pass the following arguments to our method call:

  • values from our data that will represent a portion of the pie chart.
  • names that will represent the names for those regions of the pie chart. For this part, you would need to use a column with numeric values for the values argument and a column with string values for the names variable.
  • title to name the graph. You can choose whatever name you want here, but for the sake of this example, we will call our graph YouTube Categories.

Thats it. All thats left now is to display the pie chart using the fig.show() method.

You should end up with something like this:

pie-chart

Pie charts are very straightforward to read. The bigger the chunk, the greater quantity we have. We can see here that the top category in our dataset is Music (24.9%). Coming in at number two is Entertainment (22.1%).

Section 3: Make a Box Plot

I hope you all arent too square to make a box plot. Box plots can show us how spread out our data is. For this example, we are going to use a box plot to analyze the different years people start YouTube.

Sticking to the theme of simplicity, all we have to do to create our box plot is input the following:

import plotly.express as pxfig = px.box(df, y="started", title="Years Started")fig.show()

The px.box() method follows the convention we have been using in this tutorial:

  • First, we passed in our DataFrame, df.
  • Then, we passed in our y variable, started.
  • Finishing things off, we named our graph Years Started.

And like before, the graph is complete but isnt shown on the notebook page. So, to show the graph, we use fig.show() method.

It should look something like this:

box-plot

Like that one Tegan and Sara song, lets get a little bit closer with our graph. In a box plot, we have our minimum value, lower fence, Q1, median, Q3, and maximum value. For this tutorial, we will only be looking at our lower fence, median, and maximum.

  • In the lower fence, we have the year 2005. This conveys that the earliest top channels got started in 2005. Talk about being there from the very start!
  • The median, 2013, represents the average year our top channels started their career. Ah, 2013. What a time to be alive.
  • Our maximum value was 2021. This was the latest year a top channel in our dataset started. As they always say, it's never too late to begin your journey to the top!

Wrapping Up

Congrats, you just created three data visualizations analyzing the top dogs on YouTube!

Many people assume data visualization is such a complex thing, but it can be as easy as running a few lines of code. One piece of advice I would give you is to practice using one type of library for your first few months of learning data visualizations. It will give you the opportunity to get the hang of things and learn about your preferences.

More Resources

About the Author:

Miracle Awonuga is a senior at Belmont University studying Data Science and Video Production. Lately, she has been working on WaffleHacks, a student-led hackathon as the Co-Director of People and Communications.


Original Link: https://dev.to/codedex/visualize-youtube-data-with-plotly-express-27cp

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To