1. Import Dataset and do the followings: a) Describing the dataset b) Shape of the dataset c) Display first 3 rows from dataset
from pandas import *
df=read_csv("data.csv")
print("Description of data:")
print(df.describe())
print("..........................................")
print("Shape of data:",df.shape)
print(".............................................")
print("first three rows are :")
print(df.iloc[:3])
Comments
Post a Comment