데이터 불러오기(with pandas)
import pandas as pd
데이터를 다루는데 유용한 기능을 제공하는 모듈이다.
# save filepath to variable for easier access
melbourne_file_path = '../input/melbourne-housing-snapshot/melb_data.csv'
# read the data and store data in DataFrame titled melbourne_data
melbourne_data = pd.read_csv(melbourne_file_path)
# print a summary of the data in Melbourne data
melbourne_data.describe()
이런 식으로 path를 지정하고 pandas를 이용하여 데이터를 로드할 수 있다.
다음은 결과이다.
이제 지정한 변수로 데이터를 다룰 준비가 끝났다.