├── .gitignore ├── LICENSE ├── README.md ├── data └── loans 2010.csv ├── main.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | venv/ 2 | 3 | .streamlit/secrets.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mito-ds/data-cleaning-demo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mito-ds/data-cleaning-demo/HEAD/README.md -------------------------------------------------------------------------------- /data/loans 2010.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mito-ds/data-cleaning-demo/HEAD/data/loans 2010.csv -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mito-ds/data-cleaning-demo/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | streamlit 2 | pandas 3 | mitosheet 4 | analytics-python 5 | --------------------------------------------------------------------------------