pandas의 2차원 데이터 구조인 DataFrame에서 Indexing하거나 Selection하는 방법이다.
헥갈려서 적어놓는다.
Operation | Syntax | Result |
---|---|---|
Select column | df[col] | Series |
Select row by label | df.loc[label] | Series |
Select row by integer location | df.iloc[loc] | Series |
Slice rows | df[5:10] | DataFrame |
Select rows by boolean vector | df[bool_vec] | DataFrame |
http://pandas.pydata.org/pandas-docs/stable/dsintro.html