Questions tagged [pandasgui]

17 questions
3
votes
0 answers

Executing pandasgui package raises a AttributeError

I'm new on python and want to use "pandasgui" package for leaning dataframe. When trying to run a demo script located on the official page of PyPI(text), import pandas as pd from pandasgui import show df = pd.DataFrame({'a':[1,2,3], 'b':[4,5,6],…
Tatsuya
  • 31
  • 1
  • 3
3
votes
0 answers

Pandasgui to read a dataframe

I have a problem, I am trying to use pandasgui to read a dataframe, but it gives me the following error: UnicodeEncodeError: 'charmap' codec can't encode character '\u25c4' in position 276398: character maps to could someone help me?? use pandasgui…
2
votes
0 answers

Accepting License Installing PyQT5 OSX arm64

I'm trying to install PandasGUI, which has PyQT5 as a dependency. I added export PATH=$PATH:/opt/homebrew/Cellar/qt@5/5.15.5_1/bin to my .zshrc. When I run pip3 --no-cache-dir --verbose install git+https://github.com/adamerose/pandasgui.git or…
1
vote
0 answers

Panda Grapher without sorting data - 2

I am a new user of PandasGUI. I just read the data table and want to see a quick line chart: MWE: import pandas as pd from pandasgui import show my_data = pd.read_csv('test.txt',sep='\t') print(my_data) show(my_data) test.txt: x y 0 0 6 1 7…
Pygmalion
  • 785
  • 2
  • 8
  • 24
1
vote
0 answers

ModuleNotFoundError: No module named 'pandasgui'

Here is the installation screenshot. However, I see module error when I import pandasgui
Mainland
  • 4,110
  • 3
  • 25
  • 56
0
votes
0 answers

Predefine Filters for PandasGUI

For several days now I've been trying to find a way to add filters to the PandasGUI call. So far I have only managed to filter a dataset in advance and display the filtered record or display the whole dataset and apply each filter manually. However,…
T S
  • 23
  • 4
0
votes
1 answer

Pandas and pandasgui show leads to ImportError

According to the pandasgui docs I tried to run the following code: import pandas as pd from pandasgui import show df = pd.DataFrame({'a':[1,2,3], 'b':[4,5,6], 'c':[7,8,9]}) show(df) However, I get an error: ImportError: cannot import name…
PSt
  • 97
  • 11
0
votes
0 answers

Pandas GUI on Kaggle: ContextualVersionConflict: (..... {'matplotlib'})

On Kaggle Notebook I tried to install and run pandasgui but running into following error. I have seen others using Kaggle that they did not face issues or I think so (https://www.kaggle.com/discussions/getting-started/193116). Also, one more…
Mainland
  • 4,110
  • 3
  • 25
  • 56
0
votes
1 answer

Issues with loading Pandagui

I'm trying to load PandasGUI after installing it (on a mac) with the following lines %pip install pandasgui from pandasgui import show But it is showing the following…
Kam Ho
  • 1
0
votes
0 answers

Convert a .csv export file to excel, formatting multiple sheets, with filtered and styled tables using Python, stuck on filter/style application

PROBLEM: script does not translate into excel format properly, excel rejects filters and table formatting. Long explanation the bot didn't like: So i have a .csv file that has a bunch of data in it that i do not need. I have to pull this report…
0
votes
0 answers

How to install pandasGUI? Getting OSError in Anaconda prompt

Hello: I am trying to install pandasgui. After several warnings, I get ERROR: Could not install packages due to an OSError I have tried a few other ways, but then get CondaSSLError: Encountered an SSL error. Most likely a certificate verification…
JWeds
  • 3
  • 1
  • 2
0
votes
0 answers

Error 'charmap' codec can't encode character '\u25c4' in position 276395: character maps to in pandasgui

I am trying to work with pandasgui but as sonn as i try to open any Dataframe with pandasgui.show() I get the same UnicodeEncode Error: UnicodeEncodeError: 'charmap' codec can't encode character '\u25c4' in position 276395: character maps to…
simon
  • 1
0
votes
0 answers

Kivy GUI freezes when calling another framework

I try to call pandasgui after pressing a button and choosing a file using kivy framework, the process works fine and pandasgui behave in a normal manner but when i try to comeback to kivy it freezes and i should restart the app,I was being told that…
Anas
  • 15
  • 5
0
votes
1 answer

error when importing panddasgui into jupyter notebook

after I installed pandasgui in a conda virtual environment with Python=3.8, I try to import pandasgui with from pandasgui import show and here is the error that I have: Traceback (most recent call last): File…
0
votes
1 answer

How to fix an error in simplest PandasGUI script

I am trying to run the simplest pandasGUI example. import pandas as pd from pandasgui import show df = pd.DataFrame(([[1, 2, 3], [4, 5, 6], [7, 8, 9]]), columns=['a', 'b', 'c']) show(df) But I get the following error: Traceback…
passant
  • 101
  • 1
  • 2
1
2