PandasGUI Documentation

repository·master·Indexed 25 days ago

https://github.com/adamerose/pandasgui

A 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.

Tokens
347
Snippets
4
Records
4
Agent score
35%

What's inside PandasGUI

  1. Use sample datasets from pandasgui.datasets

    master

    PandasGUI 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)
  2. View a Pandas DataFrame with show()

    master

    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)