Skip to main content

Create a Streamlit Pandas App

Project description

Streamlit pandas logo

Streamlit Pandas

Streamlit Pandas is a component for the Streamlit library. It allows users to load a Pandas DataFrame and automatically generate Streamlit widgets in the sidebar. These widgets trigger filtering events within the Pandas DataFrame.

Support

Current support only exists for DataFrame columns with strings and numbers (int64 and float64). A future update will include support for time-series data.

By default, string data generates a text_input Streamlit widget, while numerical data creates sliders with ranges preset to the minimum and maximum values for that column. Users can pass a custom dictionary for handling specific types of data, where each key is the column in the DataFrame and the value is the streamlit widget type.

Sample of a custom dictionary:

create_data = {"Name": "text",
                "Sex": "multiselect",
                "Embarked": "multiselect",
                "Ticket": "text",
                "Pclass": "multiselect"}

The current version only supports: text, multiselect, and select.

Installation

  1. First, install Streamlit
pip install streamlit
  1. Next, install Pandas
pip install pandas
  1. Install Streamlit Pandas
pip install streamlit-pandas

Usage

import streamlit as st
import pandas as pd
import streamlit_pandas as sp

@st.cache_data
def load_data():
    df = pd.read_csv(file)
    return df

file = "../data/titanic.csv"
df = load_data()
create_data = {"Name": "text",
                "Sex": "multiselect",
                "Embarked": "multiselect",
                "Ticket": "text",
                "Pclass": "multiselect"}

all_widgets = sp.create_widgets(df, create_data, ignore_columns=["PassengerId"])
res = sp.filter_df(df, all_widgets)
st.title("Streamlit AutoPandas")
st.header("Original DataFrame")
st.write(df)

st.header("Result DataFrame")
st.write(res)

This will generate the following application:

Streamlit-Pandas demo application

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

streamlit_pandas-0.0.9.tar.gz (3.1 kB view details)

Uploaded Source

File details

Details for the file streamlit_pandas-0.0.9.tar.gz.

File metadata

  • Download URL: streamlit_pandas-0.0.9.tar.gz
  • Upload date:
  • Size: 3.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.7.6

File hashes

Hashes for streamlit_pandas-0.0.9.tar.gz
Algorithm Hash digest
SHA256 64c961addcdc400d338ee3dfec69a880eedf8451f4eaa299339644ba50789fbf
MD5 a32d9b47998ceac0ed7a70b4771b56f0
BLAKE2b-256 dbdcafe3ab497d13d77316d87f0f2b893ec26b085d05ebadee31ddbe647c3592

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page