데이터 이름: chipo 정보출력 print(chipo.shape) --> 데이터의 모양(크기) 출력 (a, b)로 출력되면 데이터는 총 a개이며, column은 b개이다. print(chipo.info()) --> 데이터의 정보 출력 chipo.head() --> 모든 데이터 출력 chipo.head(N): chipo 라는 Dataframe에서 순서대로 N개의 row 데이터를 보여줌. print(chipo.describe()) --> chipo dataframe에서 수치형 피처들의 요약 통계량 확인 print(chipo.column), print(chipo.index) --> column이름과 현재 위치를 보여준다. print(len(chipo['item_name'].unique())) --> item..