Python Forum
Fixed colum width for rowLabels i Matplotlib
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Fixed colum width for rowLabels i Matplotlib
#1
Is there a way to set a min-width or in general width value to the row label cells (r1, r2) in the following code?

import numpy as np
import matplotlib.pyplot as plt
import pandas as pd
import textwrap as twp
import sys
import json 
import matplotlib as mpl



fig, ax = plt.subplots();


the_table = plt.table(cellText=['c1','c2'],
                      rowLabels=['r1','r2'],
                      bbox=[0, -0.5, 1, 0.5],
                      colLabels= ['col1', 'col2'],
                      loc='bottom')

table_props=the_table.properties()
  
table_cells=the_table.get_celld()
for cell in table_cells:
    print(cell)
    if cell[1] == -1:
       the_table[cell].set_width(3)



Using set_width does not seem to have any effect.
buran write Jun-10-2023, 06:35 PM:
Please, use proper tags when post code, traceback, output, etc. This time I have added tags for you.
See BBcode help for more info.
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Python code to set column width 1418 11 7,172 Jan-20-2024, 07:20 AM
Last Post: Pedroski55
  width of Unicode character Skaperen 6 4,041 Sep-27-2021, 12:41 AM
Last Post: Skaperen
  image.thumbnail(width, height) not working PCesarano 2 4,748 Apr-08-2021, 06:09 PM
Last Post: PCesarano
  Matplotlib: How do I convert Dates from Excel to use in Matplotlib JaneTan 1 4,217 Mar-11-2021, 10:52 AM
Last Post: buran
  Referencing a fixed cell Mark17 2 2,667 Dec-17-2020, 07:14 PM
Last Post: Mark17
  How can I get the width of a string in Python? aquerci 14 20,407 May-27-2019, 06:00 PM
Last Post: heiner55
  fixed width numbers Skaperen 15 12,044 May-27-2019, 09:42 AM
Last Post: Skaperen
  printing text tables with consistent width Skaperen 7 12,817 Jul-01-2018, 02:34 AM
Last Post: Skaperen
  How to measure an inclined beam width and height in image using python? zyb1003 1 3,929 Nov-07-2017, 05:02 AM
Last Post: heiner55
  Need help with dezoomify code (fixed Q) Ezra 7 6,581 Nov-01-2017, 01:54 PM
Last Post: buran

Forum Jump:

User Panel Messages

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