怎样更改 Matplotlib 表格的透明度/不透明度?


要更改 matplotlib 表格的透明度/不透明度,我们可以采取以下步骤

步骤

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

  • 创建图片和一组子图。

  • 使用 10×3 尺寸创建随机数据集。

  • 创建元组列。

  • 使用轴(‘关闭’)摆脱轴标记。

  • 使用数据和列创建表格。

  • 迭代表格的每个单元格并使用 set_alpha() 方法更改其透明度/不透明度。

  • 要显示图片,请使用Show() 方法。

示例

import numpy as np
from matplotlib import pyplot as plt

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

fig, axs = plt.subplots(1, 1)
data = np.random.random((10, 3))
columns = ("Column I", "Column II", "Column III")

axs.axis('off')

the_table = axs.table(cellText=data, colLabels=columns, loc='center')

for k, cell in the_table._cells.items():
    cell.set_edgecolor('black')
    if k[0] == 0 or k[1] < 0:
        cell.set_text_props(weight='bold', color='w')
        cell.set_facecolor('red')
        cell.set_alpha(0.5)
    else:
        cell.set_facecolor(['green', 'yellow'][k[0] % 2])
        cell.set_alpha(0.5)

plt.show()

输出

这将产生如下输出 −

更新于: 09-Oct-2021

537 浏览量

开启你的 事业

通过完成课程获得认证

开始
广告