Install pandasgui via pip
masterInstall the latest stable release of pandasgui from PyPI using pip.
pip install pandasguirepository·master·Indexed 25 days ago
https://github.com/adamerose/pandasguiA graphical user interface for viewing, plotting, and analyzing Pandas DataFrames and Series. Features include the show() function for interactive analysis and a collection of built-in sample datasets via pandasgui.datasets.
Install the latest stable release of pandasgui from PyPI using pip.
pip install pandasguiTo access the latest unreleased changes, install directly from the GitHub repository.
pip install git+https://github.com/adamerose/pandasgui.gitPandasGUI provides built-in sample datasets. You can import specific datasets (like pokemon or titanic) or use all_datasets, which is a dictionary of all available sample DataFrames, to populate the GUI.
from pandasgui import show
from pandasgui.datasets import pokemon, titanic, all_datasets
# View specific datasets
show(pokemon, titanic)
# View all available sample datasets
show(**all_datasets)Use the show() function from pandasgui to open an interactive GUI for viewing and analyzing a Pandas DataFrame.
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)