├── .gitignore ├── _assets ├── calls.png ├── interviews-sorted.png └── interviews-sorted-new.png └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | .ipynb_checkpoints/* 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /_assets/calls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natolambert/job-search-viz/HEAD/_assets/calls.png -------------------------------------------------------------------------------- /_assets/interviews-sorted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natolambert/job-search-viz/HEAD/_assets/interviews-sorted.png -------------------------------------------------------------------------------- /_assets/interviews-sorted-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natolambert/job-search-viz/HEAD/_assets/interviews-sorted-new.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | # Job Search Visualizer 3 | 4 | This is a quick tool I made to visualize the calls I made during my thorough job search. 5 | It returns two plots. 6 | 1. a timeline for each company with per-interview types. 7 | ![Plot of interview evolution](_assets/interviews-sorted-new.png) 8 | 2. a bar plot showing relative density of networking and interview calls. 9 | ![Plot of call density](_assets/calls.png) 10 | 11 | ## Usage 12 | To use, please make a copy of this [google sheet](https://docs.google.com/spreadsheets/d/1ZlqblM1N8Qqkmy8EP_YSXb9cVtV4z-fKQ7nMWXMLuQc/edit?usp=sharing). 13 | 14 | --------------------------------------------------------------------------------