-
Juypter-계산Cording/Python 2021. 1. 20. 22:57
df.sum(axis=0) > 열의 합계
df.sum(axis=1) > 행의 합계
df.mean() > 열의 평균
df.loc['a'].mean() > a열 평균
df.var()
df.one = df.one.fillna(0) > one: 열 표시(NaN를 0으로)
two = df['two'].min()
df['two'] = df['two'].fillna(value=two)
df
df.std()
df.min(axis=1)
df.max(axis=0)
df.count(axis=1)
# index 기준 정렬
df2.sort_index(axis=0, ascending=FALSE)
'Cording > Python' 카테고리의 다른 글
jupyter-data visualization (0) 2021.01.21 Juypter-data2 (0) 2021.01.20 Jupyter-html table (0) 2021.01.19 Jupyter-data, csv (0) 2021.01.17 jupyter-graph (0) 2021.01.13