Learn practical skills, build real-world projects, and advance your career
import jovian
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
import seaborn as sns

inp0=pd.read_csv("df_hmy_weight.csv")
inp0.head()
inp0.describe()
inp0.groupby(["Product_Class"]).median()
inp0.to_csv("HMY_Default_Weight")
jovian.commit()