Answer to Question #345169 in Python for ashu

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'.


1
Expert's answer
2022-05-26T09:14:29-0400
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!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS