├── .gitignore ├── results ├── result.png └── otc catchup analysis.pbix ├── data ├── Number of attendees vs Number of session.csv ├── projects.csv ├── old summaries │ ├── 24.md │ ├── 38.md │ ├── 19.md │ ├── 49.md │ ├── 35.md │ ├── 21.md │ ├── 22.md │ ├── 23.md │ ├── 13.md │ ├── 34.md │ ├── 37.md │ ├── 41.md │ ├── 15.md │ ├── 16.md │ ├── 29.md │ ├── 36.md │ ├── 27.md │ ├── 14.md │ ├── 33.md │ ├── 53.md │ ├── 30.md │ ├── 39.md │ ├── 32.md │ ├── 51.md │ ├── 48.md │ ├── 40.md │ ├── 43.md │ ├── 45.md │ ├── 18.md │ ├── 42.md │ ├── 44.md │ ├── 31.md │ ├── 25.md │ ├── 11.md │ ├── 46.md │ ├── 26.md │ ├── 28.md │ ├── 17.md │ ├── 50.md │ ├── 52.md │ └── 47.md ├── old_otcs.csv ├── otc.csv ├── otc_final.csv ├── otc_attendees.csv └── otc_attendees_transposed.csv ├── templates ├── index.html └── data_studio.html ├── LICENSE ├── README.md └── scripts ├── data cleaning.ipynb ├── OTC CatchUp summary scraper.ipynb └── old otcs.ipynb /.gitignore: -------------------------------------------------------------------------------- 1 | .ipynb_checkpoints -------------------------------------------------------------------------------- /results/result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mihikagaonkar/OTC-Dashboard/HEAD/results/result.png -------------------------------------------------------------------------------- /results/otc catchup analysis.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mihikagaonkar/OTC-Dashboard/HEAD/results/otc catchup analysis.pbix -------------------------------------------------------------------------------- /data/Number of attendees vs Number of session.csv: -------------------------------------------------------------------------------- 1 | Number,Number of attendees 2 | 62,43 3 | 61,39 4 | 60,30 5 | 63,27 6 | 55,25 7 | 57,24 8 | 56,22 9 | 59,18 10 | 54,17 11 | 58,15 12 | -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 |
11 |
12 |
--------------------------------------------------------------------------------
/templates/data_studio.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | A Power BI/Google Studio dashboard analyzing OTC CatchUps.
3 | 4 | ## File Contents 5 | ``` 6 | * 7 | ├───data 8 | ├───old summaries 9 | ─── *.md 10 | ├─── *.csv 11 | ├───scripts 12 | ├─── *.ipynb 13 | ├───results 14 | └─── 15 | ``` 16 | - data folder 17 | - Contains markdown files of CatchUp summaries starting from CatchUp #11 to CatchUp #53 with a few missing. 18 | - Final csv files used to make visualizations. 19 | - OTC CatchUp summary scraper.ipynb - Code to scrape OTC catchup summaries from CatchUp #54 available on the [OTC website](https://catchup.ourtech.community/summary). 20 | - old otcs.ipynb - Code to extract relevant data from the summaries and saving it to old_otcs.csv. 21 | - data cleaning.ipynb - Code to merge the csv files and get all the columns in the right format for visualization. 22 | 23 | ## Results 24 |
25 |
26 |