Learn practical skills, build real-world projects, and advance your career

Youtube Data Analysis

This dataset contains the youtube data for country india and Data is provided in between 2017 and 2018.

Dataset fields include video_id, trending_date, title, channel_title, category_id,publish_time, tags, views, likes, dislikes, comment_count.
There are total 37352 rows and 16 columns

You can download the YouTube India data set from here -- https://www.kaggle.com/datasnaek/youtube-new

find more information at kagle (https://www.kaggle.com/datasnaek/youtube-new/notebooks)

Data Preparation and Cleaning

import pandas as pd
import numpy as np

import matplotlib.pyplot as plt
import seaborn as sns
%matplotlib inline

import warnings
warnings.filterwarnings('ignore')
  • Read the YouTube india csv_file using pandas
video_df = pd.read_csv("INvideos.csv")
video_df