├── .streamlit └── config.toml ├── Chat2VIS.py ├── README.md ├── cars.csv ├── chat2vis.png ├── classes.py ├── colleges.csv ├── customers_and_products_contacts.csv ├── department_store.csv ├── energy_production.csv ├── housing.csv ├── movies.csv ├── pages └── 01_Publications.py └── requirements.txt /.streamlit/config.toml: -------------------------------------------------------------------------------- 1 | [server] 2 | maxUploadSize = 30 3 | -------------------------------------------------------------------------------- /Chat2VIS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frog-land/Chat2VIS_Streamlit/HEAD/Chat2VIS.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frog-land/Chat2VIS_Streamlit/HEAD/README.md -------------------------------------------------------------------------------- /cars.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frog-land/Chat2VIS_Streamlit/HEAD/cars.csv -------------------------------------------------------------------------------- /chat2vis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frog-land/Chat2VIS_Streamlit/HEAD/chat2vis.png -------------------------------------------------------------------------------- /classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frog-land/Chat2VIS_Streamlit/HEAD/classes.py -------------------------------------------------------------------------------- /colleges.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frog-land/Chat2VIS_Streamlit/HEAD/colleges.csv -------------------------------------------------------------------------------- /customers_and_products_contacts.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frog-land/Chat2VIS_Streamlit/HEAD/customers_and_products_contacts.csv -------------------------------------------------------------------------------- /department_store.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frog-land/Chat2VIS_Streamlit/HEAD/department_store.csv -------------------------------------------------------------------------------- /energy_production.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frog-land/Chat2VIS_Streamlit/HEAD/energy_production.csv -------------------------------------------------------------------------------- /housing.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frog-land/Chat2VIS_Streamlit/HEAD/housing.csv -------------------------------------------------------------------------------- /movies.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frog-land/Chat2VIS_Streamlit/HEAD/movies.csv -------------------------------------------------------------------------------- /pages/01_Publications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frog-land/Chat2VIS_Streamlit/HEAD/pages/01_Publications.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frog-land/Chat2VIS_Streamlit/HEAD/requirements.txt --------------------------------------------------------------------------------