如何设置 matplotlib 表格中一列的背景色?


要设置 matplotlib 表格中一列的背景色,我们可以采取以下步骤 -

  • 设置图形大小并调整子图之间的和周围的填充。

  • columns 属性创建一个元组。

  • 创建一个 列表,即记录列表。

  • 创建一个 列表,即每个单元格的颜色。

  • 创建一个图形和一组子图。

  • 将表格添加到坐标轴 ax

  • 关闭坐标轴。

  • 要显示图形,可以使用 show() 方法。

示例

import matplotlib.pyplot as plt

plt.rcParams["figure.figsize"] = [7.50, 3.50]
plt.rcParams["figure.autolayout"] = True

columns = ('name', 'age', 'marks', 'salary')

cell_text = [["John", "23", "98", "234"], ["James", "24", "90", "239"]]

colors = [["red", "yellow", "blue", "green"], ["blue", "green", "yellow", "red"]]

fig, ax = plt.subplots()

the_table = ax.table(cellText=cell_text, cellColours=colors, colLabels=columns, loc='center')

ax.axis('off')

plt.show()

输出

更新于: 2021 年 8 月 10 日

2K+ 浏览

开启你的事业

完成课程获得认证

开始吧
广告