본문 바로가기
5-3. Pandas 제공 자료구조/Series

[파이썬 Pandas] 딕셔너리로 시리즈(Series) 정의하기

by 만다린망고 2020. 10. 21.
반응형

[파이썬 Pandas] 

딕셔너리로 시리즈(Series) 정의하기


딕셔너리를 이용하여 시리즈를 정의하는 방법은 아래와 같습니다.


dic = {'list':[1,2,3], 'num':123456, "char": 'hi'}

B=pd.Series(dic)


>>> B

list    [1, 2, 3]

num        123456

char           hi

dtype: object


반응형

댓글