https://s3-us-west-2.amazonaws.com/secure.notion-static.com/e6a690f9-bfda-4dcf-a2d0-d8b909bd7c86/---.jpg

목차

pandas

import pandas as pd
import numpy as np
# 버전 확인 
print(pd.__version__) 
print(np.__version__)

pd?                   # tab누르면 사용가능한 여러가지 method를 볼 수 있다.
np?
Out[-]
1.0.1
1.18.1

Series

Series 형태

data = [100, 200, 300, 400, 500]
pd.Series(data)
Out[-]
0    100
1    200
2    300
3    400
4    500
dtype: int64