An interactive tool for tabular data exploration.
These instructions assume that you have python and git already installed on your computer.
- Clone the repo and move into the dir
git clone https://github.com/SamuelHLewis/anygraph
cd anygraph
- Create a new python environment using
venv
python -m venv venv
- Activate the new python environment
source venv/bin/activate
- Update pip
python -m pip install --upgrade pip
- Install the modules for the app
python -m pip install -r requirements.txt
To launch the app, make sure you have the python environment created above loaded, and then run the following in your terminal:
streamlit run app.py
This allows you to load any CSV file. If you would like to create an example CSV file for debugging or demonstration purposes, run the following:
python scripts/create_example_data.py
This will write the file example_data.csv to the data dir. This file is the iris dataset from sklearn.