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

Package Installation

Install the required packages. Since this is a EDA project, we wouldnt be importing any sickitlearn packages but would be mostly using pandas, numpy (if required) and plotly for vizualization

!pip install plotly openpyxl --upgrade --quiet
import pandas as pd
import numpy as np
import plotly.express as px
import pandas as pd
import numpy as np
import plotly.express as px

Importing Data

%%time
retail_df = pd.read_excel('Online_Retail.xlsx')
CPU times: user 46.9 s, sys: 261 ms, total: 47.2 s Wall time: 47.2 s