How to insert bold text in a cell of matplotlib table (pyplot table) ?
JavaScript
x
3
1
import matplotlib.pyplot as plt
2
plt.table(cellText=[['my_texte_bold', 'other cell'], ['cell1', 'cell2'])
3
Advertisement
Answer
See the documentation for an example of how to iterate over the cells of the table and apply font properties. For example, to make the text in the first row bold, you could do the following:
JavaScript
1
8
1
import matplotlib.pyplot as plt
2
from matplotlib.font_manager import FontProperties
3
4
table = plt.table(cellText=[['my_texte_bold', 'other cell'], ['cell1', 'cell2']])
5
for (row, col), cell in table.get_celld().items():
6
if (row == 0):
7
cell.set_text_props(fontproperties=FontProperties(weight='bold'))
8