%matplotlib inline
import pandas as pd
import seaborn as sns
df = pd.read_csv('data/subway.csv')
df['in']
0 37
1 2064
2 375
3 4338
4 321
...
586 31245
587 38099
588 52310
589 29150
590 58391
Name: in, Length: 591, dtype: int64
%matplotlib inline
import pandas as pd
import seaborn as sns
df = pd.read_csv('data/subway.csv')
sns.kdeplot(df['in'])
'자동제어 > Python for robotics' 카테고리의 다른 글
seaborn 라이브러리 catplot() (0) | 2023.03.18 |
---|---|
violinplot() (0) | 2023.03.12 |
박스플롯 (0) | 2023.03.08 |
스타벅스 음료 칼로리 예제(히스토그램, bins) (0) | 2023.03.05 |
어도비 직원분포 예제(set_index, 파이그래프) (0) | 2023.03.05 |