├── .gitignore ├── visualization └── Step2_viz_area_chart │ ├── index.html │ ├── year_data.csv │ ├── style.css │ └── index.js ├── environment.yml ├── README.md ├── Topic_Modeling_Tutorial ├── Step3_pipeline_Text-Cleaner.ipynb ├── Step1_pipeline_supcourt_yearlist.ipynb ├── Step4_pipeline_Model-testing.ipynb └── Step2_pipeline_casegetter_forfinal.ipynb └── pipeline.py /.gitignore: -------------------------------------------------------------------------------- 1 | local/ 2 | data/ 3 | .DS_Store 4 | pipeline/.ipynb_checkpoints/ 5 | supreme_court_data/ -------------------------------------------------------------------------------- /visualization/Step2_viz_area_chart/index.html: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |