Pandas 함수
2022. 3. 23. 22:31ㆍPython
- df.value_counts()
df.value_counts() # 값의 갯수를 카운트
df['AM or PM'].value_counts()
- df.shape
df.shape
- len()
len(df[df['Language']=='en'])
- groupby()
df.groupby('Language')['Purchase Price'].sum().sort_values(ascending=False)
- pivot_table()
pd.pivot_table(df,
index='CC Provider' ,
columns='AM or PM' ,
values='Purchase Price' ,
aggfunc=np.mean ,
)
- contains()
df[df['Address'].str.contains('Apt')].groupby('Job').sum()
'Python' 카테고리의 다른 글
빅분기 실기 Chapter1 (0) | 2022.06.07 |
---|---|
Crawling (0) | 2022.03.24 |
Visualization - Matplotlib (0) | 2022.03.23 |
Class (0) | 2022.03.21 |
Visualization - Seaborn (0) | 2022.03.18 |