범주 형 데이터가있는 데이터 프레임이 있습니다.
colour direction
1 red up
2 blue up
3 green down
4 red left
5 red right
6 yellow down
7 blue down
카테고리에 따라 파이 차트 및 히스토그램과 같은 일부 그래프를 생성하고 싶습니다. 더미 숫자 변수를 만들지 않고도 가능합니까? 같은 것
df.plot(kind='hist')
답변
답변
답변
이렇게 :
df.groupby('colour').size().plot(kind='bar')
답변
countplot
에서 사용할 수도 있습니다 seaborn
. 이 패키지 pandas
는 높은 수준의 플로팅 인터페이스를 만들기 위해 빌드됩니다 . 좋은 스타일링과 올바른 축 레이블을 무료로 제공합니다.
import pandas as pd
import seaborn as sns
sns.set()
df = pd.DataFrame({'colour': ['red', 'blue', 'green', 'red', 'red', 'yellow', 'blue'],
'direction': ['up', 'up', 'down', 'left', 'right', 'down', 'down']})
sns.countplot(df['colour'], color='gray')
또한 약간의 트릭으로 바를 올바른 색상으로 채색하는 것을 지원합니다.
sns.countplot(df['colour'],
palette={color: color for color in df['colour'].unique()})
답변
여러 범주 기능을 동일한 플롯에 막대 차트로 표시하려면 다음을 제안합니다.
import pandas as pd
import matplotlib.pyplot as plt
df = pd.DataFrame(
{
"colour": ["red", "blue", "green", "red", "red", "yellow", "blue"],
"direction": ["up", "up", "down", "left", "right", "down", "down"],
}
)
categorical_features = ["colour", "direction"]
fig, ax = plt.subplots(1, len(categorical_features))
for i, categorical_feature in enumerate(df[categorical_features]):
df[categorical_feature].value_counts().plot("bar", ax=ax[i]).set_title(categorical_feature)
fig.show()