Python Forum
How to change the font size of a table?
Thread Rating:
  • 2 Vote(s) - 3 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How to change the font size of a table?
#1
Hi,

I'm fighting for hours to change the size of the numbers which fills the cells of a table created with matplotlib. Here's my code for a subplot table:
rows = ['%d' % i for i in np.arange(1,prism+1)]
columns = ('Mt (A)','inc ($^\circ$)','x0 (m)','z0 (m)')
   
prec = np.asarray(data_prec)

cell_text = []
for row in range(prism):
   cell_text.append(['%.1f $\pm$ %.1f' % item for item in zip(p[row,0:4],prec[row,0:4])])
ax6=plt.subplot2grid((3,3), (2,2), colspan=1, frameon=False)
ax6.table(cellText=cell_text,rowLabels=rows,colLabels=columns,loc='center')
ax6.get_xaxis().set_visible(False)
ax6.get_yaxis().set_visible(False)
ax6.set_title('f)', fontsize=12, fontweight="bold", position=(-0.05,0.85))

plt.show()
I also tried to use fontsize on line 10 of the code, but without success. At this moment the code creates a table using the arrays "p" and "prec". Everything is ok, except by the fact of the table font has size like 6 or 8, too small for my necessity.

If anyone could show me how to change the font size, it would be super helpful.
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  How can I write formatted (i.e. bold, italic, change font size, etc.) text to a file? JohnJSal 12 27,794 Feb-13-2025, 04:48 AM
Last Post: tomhansky
  Python code for alignment and font size 1418 0 917 Jan-14-2024, 03:56 AM
Last Post: 1418
  Change font in a list or tuple apffal 4 3,681 Jun-16-2023, 02:55 AM
Last Post: schriftartenio
  Change Text Size in Console? ShakeyPakey 9 14,857 Dec-09-2021, 02:51 AM
Last Post: drvlwho
  how to change the font style on Linux? laylalogan337 2 2,658 Aug-10-2021, 04:31 PM
Last Post: deanhystad
  [split] Change Text Size in Console? CodingKid 1 2,481 Jul-20-2021, 02:47 PM
Last Post: deanhystad
  Load external font and does not show font in the window ATARI_LIVE 16 11,901 Feb-05-2021, 10:36 PM
Last Post: EthanPayne
  size of set vs size of dict zweb 0 2,614 Oct-11-2019, 01:32 AM
Last Post: zweb
  Is there a way to detect the text font, size and color from an image in python? Maia07 2 10,295 Aug-23-2018, 01:16 PM
Last Post: Maia07
  CSV file created is huge in size. How to reduce the size? pramoddsrb 0 11,548 Apr-26-2018, 12:38 AM
Last Post: pramoddsrb

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020