https://www.python-graph-gallery.com/5-control-width-and-space-in-barplots
# library
import matplotlib.pyplot as plt
# create dataset
height = [3, 12, 5, 18, 45]
bars = ('A', 'B', 'C', 'D', 'E')
# Choose the width of each bar and their positions
width = [0.1, 0.2, 3, 1.5, 0.3]
x_pos = [0, 0.3, 2, 4.5, 5.5]
# Make the plot
plt.bar(x_pos, height, width=width)
# Create names on the x-axis
plt.xticks(x_pos, bars)
# Show graphic
plt.show()
'파이썬. 데이터분석 > Matplotlib' 카테고리의 다른 글
Matplotlib : 다중막대그래프 (0) | 2022.10.06 |
---|---|
subplot 예시 사이트 모음 (1) | 2022.10.04 |
가장 심플한 막대그래프 df.plot : 판다스 plot (0) | 2022.07.22 |
matplotlib : ax.tick_params (0) | 2022.07.21 |
matplotlib : 전역설정(global) rcParams 정리 (0) | 2022.07.21 |