Learn practical skills, build real-world projects, and advance your career
import jovian
jovian.commit()
[jovian] Attempting to save notebook.. [jovian] Uploading notebook.. [jovian] Capturing environment.. [jovian] Committed successfully! https://jovian.ml/cprofessional01/eda-with-ds-26
 
import pandas as pd
pd.options.display.float_format='{:.2f}'.format
pd.set_option('display.max_rows',50)
 
#load the dataset

df = pd.read_csv('INVideos.csv',parse_dates=[1,5])
df.head()