Question #345169

Write code to load data from cars.csv into a dataframe and print its details. Details like: 'count', 'mean', 'std', 'min', '25%', '50%', '75%', 'max'.


Expert's answer

import pandas as pd



data = pd.read_csv("cars.csv")


print("size of data: ", data.shape)
print("STATISTICS:")
data.describe()


Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

LATEST TUTORIALS
APPROVED BY CLIENTS