메모
전체 예제 코드를 다운로드 하려면 여기 를 클릭 하십시오.
범주형 변수 플로팅 #
범주형 값(예: 문자열)을 x 또는 y 값으로 여러 플로팅 함수에 직접 전달할 수 있습니다.
import matplotlib.pyplot as plt
data = {'apple': 10, 'orange': 15, 'lemon': 5, 'lime': 20}
names = list(data.keys())
values = list(data.values())
fig, axs = plt.subplots(1, 3, figsize=(9, 3), sharey=True)
axs[0].bar(names, values)
axs[1].scatter(names, values)
axs[2].plot(names, values)
fig.suptitle('Categorical Plotting')
Text(0.5, 0.98, 'Categorical Plotting')
이것은 두 축 모두에서 작동합니다.
cat = ["bored", "happy", "bored", "bored", "happy", "bored"]
dog = ["happy", "happy", "happy", "happy", "bored", "bored"]
activity = ["combing", "drinking", "feeding", "napping", "playing", "washing"]
fig, ax = plt.subplots()
ax.plot(activity, dog, label="dog")
ax.plot(activity, cat, label="cat")
ax.legend()
plt.show()