pandas.plotting.table #

pandas.plotting。( ax , data , ** kwargs ) [来源] #

将 DataFrame 和 Series 转换为 matplotlib.table 的辅助函数。

参数
ax Matplotlib 轴对象
数据数据框或系列

表内容的数据。

**夸格

要传递给 matplotlib.table.table 的关键字参数。如果未指定rowLabelscolLabels,则将使用数据索引或列名称。

返回
matplotlib 表对象

例子

>>> import matplotlib.pyplot as plt
>>> df = pd.DataFrame({'A': [1, 2], 'B': [3, 4]})
>>> fix, ax = plt.subplots()
>>> ax.axis('off')
(0.0, 1.0, 0.0, 1.0)
>>> table = pd.plotting.table(ax, df, loc='center',
...                           cellLoc='center', colWidths=list([.2, .2]))