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

# # Importing the dataframe

import jovian
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
import seaborn as sns

inp0=pd.read_csv("Harmony_df.csv")
inp0.head()
inp0.dtypes
SKU_Number                   object
Product_Description          object
Business_Unit_Id              int64
Business_Unt_Description     object
Subclass                      int64
Subclass_Description         object
Item_Weight                 float64
weight_uom                   object
dtype: object
inp0.isnull().sum()
SKU_Number                   0
Product_Description         83
Business_Unit_Id             0
Business_Unt_Description     0
Subclass                     0
Subclass_Description         0
Item_Weight                  0
weight_uom                   0
dtype: int64

# # Changing from LB to KG