使用pandas.DataFrame.plot

时间:2016-09-23 20:00:01

标签: python pandas matplotlib

我正在使用pandas.DataFrame.plot生成带有表的条形图。

有没有办法在表格中格式化表格大小和/或字体大小以使其更具可读性?

我的DataFrame(dfexe):

City    State   Waterfalls  Lakes   Rivers
LA  CA  2   3   1
SF  CA  4   9   0
Dallas  TX  5   6   0

使用表格创建条形图:

myplot = dfex.plot(x=['City','State'],kind='bar',stacked='True',table=True)
myplot.axes.get_xaxis().set_visible(False)

输出: enter image description here

1 个答案:

答案 0 :(得分:3)

这是一个答案。

# Test data
dfex = DataFrame({'City': ['LA', 'SF', 'Dallas'],
 'Lakes': [3, 9, 6],
 'Rivers': [1, 0, 0],
 'State': ['CA', 'CA', 'TX'],
 'Waterfalls': [2, 4, 5]})

myplot = dfex.plot(x=['City','State'],kind='bar',stacked='True',table=True)
myplot.axes.get_xaxis().set_visible(False)
# Getting the table created by pandas and matplotlib
table = myplot.tables[0]
# Setting the font size
table.set_fontsize(12)
# Rescaling the rows to be more readable
table.scale(1,2)

enter image description here

注意:还可以查看this答案以获取更多信息。