Questions tagged [pandastable]

Pandastable provides a table widget for tkinter.

Documentation can be found here.

21 questions
0
votes
1 answer

Tkinter: 'NoneType' object has no attribute 'bind_all'

I'm using pandastable to implement a pandas dataframe into my tkinter window however, an error: 'NoneType' object has no attribute 'bind_all' Keeps coming up when I use this line: table = pt = Table(window, dataframe=stats) full code: import…
Noah Robb
  • 59
  • 1
  • 7
0
votes
1 answer

Pandastable transpose columns so they are vertical

i am using pandastable to display pandas dataframes in a tkinter GUI. I have one dataframe that only has one row and three columns so I want to display it vertically to save space in my GUI. The original table is something like: Max | Min |…
anony1414
  • 37
  • 4
0
votes
0 answers

How to edit a datatable in pandastable and save it in my python program?

I have a program where a user inputs an excel file, the program runs some data analysis and then shows the data tables in a tkinter gui using pandastable library. With the pandastable library, users can delete outliers in the table but I can't…
anony1414
  • 37
  • 4
0
votes
1 answer

Pandastable header and id column too big

I am working on a python app that would gather data from multiple servers and show it in a table via pandastable module. I am in early stages, so the code is a bit messy and rough. I am able to render the table, but i have a problem with header row…
boz noz
  • 25
  • 5
0
votes
1 answer

How to fine-tune column widths of a table displayed on a tkinter frame using pandastable?

I'm placing a pandas dataframe, df, on a tkinter frame, my_frame, using the pandastable package. The dataframe has four columns and, despite looking through the pandastable documention, I'm struggling to modify the column widths so that none of the…
fishbacp
  • 1,123
  • 3
  • 14
  • 29
-1
votes
1 answer

Set alignment of columns in pandastable

I am trying to set different alignment types for different columns in pandastable. Meanwhile I have found a way to set the alignment for the complete table using the global configuration as shown here (in this example, default alignment "w" can…
tfv
  • 6,016
  • 4
  • 36
  • 67
1
2