美文网首页我爱编程
python matplotlib绘制table

python matplotlib绘制table

作者: MiracleJQ | 来源:发表于2018-06-26 15:41 被阅读0次

import matplotlib.pyplot as plt

import numpy as np

plt.figure()

ax = plt.gca()

y = np.random.randn(9)

col_labels = ['col1','col2','col3']

row_labels = ['row1','row2','row3']

table_vals = [[11,12,13],[21,22,23],[28,29,30]]

row_colors = ['red','gold','green']

my_table = plt.table(cellText=table_vals, colWidths=[0.1]*3, rowLabels=row_labels, colLabels=col_labels, rowColours=row_colors, colColours=row_colors, loc='best')

plt.plot(y)

plt.show()

相关文章

网友评论

    本文标题:python matplotlib绘制table

    本文链接:https://www.haomeiwen.com/subject/mykmyftx.html