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

IMPORTING LIBRARIES

import pandas as pd
import numpy as np
import matplotlib
import matplotlib.pyplot as plt
%matplotlib inline
import seaborn as sns
import math
from wordcloud import WordCloud

#sns.set_style("darkgrid")
matplotlib.rcParams['font.size'] = 14
matplotlib.rcParams['figure.figsize'] = (20,10)
matplotlib.rcParams['figure.facecolor'] = '#00000000'
vacc_df = pd.read_csv('F:\DATASET\country_vaccinations.csv')
vacc_df.head()
vacc_df.columns
Index(['country', 'iso_code', 'date', 'total_vaccinations',
       'people_vaccinated', 'people_fully_vaccinated',
       'daily_vaccinations_raw', 'daily_vaccinations',
       'total_vaccinations_per_hundred', 'people_vaccinated_per_hundred',
       'people_fully_vaccinated_per_hundred', 'daily_vaccinations_per_million',
       'vaccines', 'source_name', 'source_website'],
      dtype='object')