pandas 만들기 시리즈
2526 단어 이론 학습
시리즈 객체를 작성하는 방법
일반적인 Pandas 객체 작성 방법은 다음과 같습니다.
pd.Series(data, index=index)
예를 들어, 데이터는 목록 또는 Numpy 배열을 사용할 수 있습니다. 이것은 index 기본값인 정수 시퀀스입니다.
pd.Series([2,4,6])
Out[58]:
0 2
1 4
2 6
dtype: int64
pd.Series(5, index=[100, 200, 300])
Out[59]:
100 5
200 5
300 5
dtype: int64
pd.Series({2:'a', 1:'b', 3:'c'})
Out[60]:
2 a
1 b
3 c
dtype: object
pd.Series({2:'a', 1:'b', 3:'c'}, index=[3,2])
Out[61]:
3 c
2 a
dtype: object