위로 아래

설치

python3 -m pip pandas

 

사용

import pandas

house = pandas.read_csv('파일명')

print(house)

 

응용

head()

#앞에 두 줄만 출력
print(house.head(2))

#기본값 = 앞의 5줄 출력
print(house.head())

 

describe()

#파일의 정보 출력
print(house.describe())