此问题已在此处有答案:
How do I change the size of figures drawn with Matplotlib?(14个答案)
昨天关门了。
我正尝试以下列方式绘制条形图:
# importing package
import matplotlib.pyplot as plt
import pandas as pd
# create data
df = pd.DataFrame([['A', 10, 20, 10, 30], ['B', 20, 25, 15, 25], ['C', 12, 15, 19, 6],
['D', 10, 29, 13, 19]],
columns=['Team', 'Round 1', 'Round 2', 'Round 3', 'Round 4'])
# view data
print(df)
# plot grouped bar chart
df.plot(x='Team',
kind='bar',
stacked=False,
title='Grouped Bar Graph with dataframe')
但是条形图的尺寸很小,我应该做什么修改才能让条形图在长度和宽度上都变大呢?
3条答案
按热度按时间d8tt03nd1#
请参阅pandas.plot的文档。您要查找的参数是figsize. Pandas Plot Documentation
inb24sb22#
可以使用width参数
dpiehjr43#
结果:(* 不舒服**大*条形图)
使用
colormap
参数更改色彩Map表。