- pandas >= 0.20
- ipython >= 5.0.0
- jupytertheme >= 0.16
- git clone this reporitory
- Make sure pandas, jupyter notebook and jupyterthem are installed with proper versions.
- Travel to repository directory
- Run all cells within "Talk Slide.ipynb"
- ipython nbconvert Talk\ Slides.ipynb --to slides --post serve
-
Incorrect code for changing column orders
Original Code:
df.columns = ['UserID', 'MovieID', 'Rating', 'rating_dt', 'Timestamp']
should be changed to
df = df[['UserID', 'MovieID', 'Rating', 'rating_dt', 'Timestamp']]
-
"Inter-Quantile Range" should be Interquartile range