pandas 데이터 프레임에서 시리즈를 얻어 내는 방법¶ pandas 에는 두가지 기본적인 object type 이 있다¶하나는 dataframe 이고 raw 와 column 으로 이루어진 table 형태의 data 하나는 series 이다. dataframe 의 각 column 은 pandas 의 series 로 이루어져있다. In [3]: import pandas as pd In [4]: ufo = pd.read_csv('http://bit.ly/uforeports') In [5]: type(ufo) Out[5]: pandas.core.frame.DataFrame In [6]: ufo.head() Out[6]: City Colors Reported Shape Reported State ..
* 단축키는 한글/영문 대소문자로 이용 가능하며, 티스토리 기본 도메인에서만 동작합니다.