Pandas 데이터 필터링

1 개요[ | ]

Pandas 필터링
Pandas 데이터 필터링
Python 데이터프레임 필터링
Pandas 데이터프레임 필터링
import pandas as pd

df = pd.DataFrame(columns =
  ['Name' ,'English','Math'], data = [
  ['Alice', 90      , 60   ],
  ['Bob'  , 80      , None ],
  ['Carol', None    , 80   ],
  ['Dave' , 60      , 80   ],
  ['Erwin', 85      , 85   ],
  ])
df
df[df['English'] > 80]
df[(df['English'] > 80) & (df['Math'] < 70)]
df[(df['English'] > 80) | (df['English'] < 70)]

2 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}