[TIL]Day 37

이재희·2021년 1월 5일
0

TIL

목록 보기
37/312

판다스 피벗 테이블
https://yganalyst.github.io/data_handling/Pd_14/

데이터프레임 NaN 값 채우기

coffee = coffee.fillna(0)

특정값 바꾸기

df.loc[df["gender"] == "male","gender"] = 0
df.loc[df["gender"] == "female","gender"] = 1

컬럼들 조회

df.columns

결측치 처리
https://m.blog.naver.com/youji4ever/221791455668

groupby

covid_by_region = covid['Confirmed'].groupby(by=covid["WHO Region"]) 

주피터 노트북에서 모든 행과 열 보기

import pandas as pd
pd.set_option('display.max_columns', None)
pd.set_option('display.max_rows', None)
pd.set_option('max_colwidth', 400)
profile
오늘부터 열심히 산다

0개의 댓글