[Pandas] DataFrame
2019. 9. 16. 21:21ㆍIT/Pandas : 데이터
frame
데이터 프레임을 파라미터로 받을 수 있다.
def f(frame):
frame['new'] = 'a'
f(df)
출처 : https://stackoverflow.com/questions/51391438/pandas-dataframe-as-an-argument-to-a-function-python
df[df['A'].str.contains("Hello|Britain")]
칼럼 중 원하는 내용이 포함되어 있는 내용을 조회한다.
df[df['A'].str.contains("Hello|Britain")]
출처 : https://stackoverflow.com/questions/11350770/select-by-partial-string-from-a-pandas-dataframe
'IT > Pandas : 데이터' 카테고리의 다른 글
[pandas] 인코딩, 확인, 조회, 불러오기 (1) | 2020.02.27 |
---|---|
[Pandas] 전처리 (0) | 2019.09.16 |
[Pandas] plot 그래프 (0) | 2019.09.16 |
[Pandas] merge 병합 (0) | 2019.09.16 |
[Pandas] 데이터 형태 (0) | 2019.09.16 |