The goal of this project is to Analyze Diwali sales data to improve customer experience and sales using python libraries, dataframes and functions. a) Improve ...
import pandas as pd df = pd.read_excel("Online Retail.xlsx") print(df.head(10)) print(df.isnull().sum()) df = df.dropna() print(df.info()) df = df.drop_duplicates ...