반응형
SMALL
import pandas as pd
import numpy as np
from IPython.display import display, HTML
display(HTML("<style>.container { width:100% !important; }</style>"))
#csv 로딩, encoding = cp949 는 한글 인코딩이 깨지지 않게 해준다.
sample = pd.read_csv('data/내국인 생활인구.csv', encoding='cp949')
sample
#맨 위에서 이래 N개 샘플 데이터
sample.head(6)
# 아래에서 위까지 데이터
sample.tail(6)
#인덱스를 0번째 인자로 지정
sample = pd.read_csv('data/내국인 생활인구.csv', encoding='cp949', index_col = 0)
sample
#인덱스 가져오기 현재는 일자 데이터
sample.index
Int64Index([20170226, 20180107, 20180317, 20190222, 20210706, 20170801,
20190502, 20170408, 20200614, 20201222,
...
20190817, 20190426, 20170214, 20191123, 20190130, 20170603,
20211007, 20200819, 20171011, 20200725],
dtype='int64', name='일자(stdr_de_id)', length=500)
LIST
'Programming > python' 카테고리의 다른 글
[ Python ] pandas loc, iloc, indexing (0) | 2024.05.06 |
---|---|
[ Python ] 주피터 노트북 간략 사용법 (0) | 2024.05.06 |
[ Python ] python 반복문 기본문법 (0) | 2024.05.06 |
[ Django ] DRF 에서 자주 사용되는 API 데코레이션 (0) | 2024.02.15 |
[ Django ] ORM 을 통한 모델 정의 및 어드민사이트 등록 (0) | 2024.02.14 |