Python - Pandas(Series/DataFrame)
시리즈(Series) 1차원 배열과 같은 데이터 구조인덱스(Index)와 데이터 값(Value)이 쌍으로 구성 import pandas as pd#시리즈 생성 예시s = pd.Series([10,20,30,40], index=['a','b','c','d'])print(s)#출력#a 10#b 20#c 30#d 40#dtype: int64s_2=pd.Series([10.0,20,30,40], index=['a','b','c','d'])print(s_2)#출력#a 10.0#b 20.0#c 30.0#d 40.0#dtype: float64 -> 시리즈는 내부적으로 같은 dtype을 가짐s는 value가 모두 정수형으로 시리즈 데이터타입이 int로 출력된 것을 볼 수 있다.s_2는 value 중 10.0만 실수형으..