Question 17
To see the distribution of the data along each numerical feature which of the following codes will show all the histograms?
• Variable name df contains all the data as pandas.core.frame.DataFrame type
• Assume all the necessary imports are made
df.hist()
df.histplot()
pandas.hist(df)
seaborn.histogram(df)