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

Importing Python Libraries

import plotly.express as px
import plotly.graph_objects as go
import plotly.figure_factory as ff
from plotly.subplots import make_subplots

import folium

import pandas as pd
import numpy as np
import matplotlib.pyplot as plt

%matplotlib inline 

import math
import random
from datetime import timedelta

import warnings 
warnings.filterwarnings('ignore')

import psutil

from datetime import date, datetime

#color pallette
cnf = '#393e46'
dth = '#ff2e63'
rec = '#21bf73'
act = '#fe9801'

print('Packages imported')
Packages imported
import os

import plotly as py
py.offline.init_notebook_mode(connected=True)

Importing and Reading the Data

try:
    os.system("rm -rf Covid-19-Preprocessed-Dataset")
except:
    print('File does not exists!')