1. Task Board¶
This is a task board for topic presentations in class. When you pick a task, cross it out and add your name.
Jun Yan ~~Variables and objects~~
Zefang Min ~~Numbers in computers~~
Shike Xu ~~Google recruiting ad problem~~
Sydney Hyde ~~Jupyter-book/MyST markdown guide~~
Jintao Zhang ~~Errors and debugging~~
Surya Eada ~~Profiling and timing~~
Sreeram Anantharaman ~~Numpy (JVP p.33-77)~~
Sreeram Anantharaman ~~Statistical distributions (Scipy)~~
Jintao Zhang ~~Optimization (Scipy)~~
Shike Xu ~~Python dictionary~~
Zefang Min ~~Numpy advanced (JVP p.78-96)~~
Surya Eada ~~Pandas: object; indexing; operation (JVP. p.97-118)~~
Sreeram Anantharaman ~~Pandas: missing data; hierarchical indexing; (JVP p.119-140)~~
Sydney Hyde ~~Pandas: dataset operations (JVP p. 141-178)~~
Jintao Zhang ~~Measures of classification accuracy and functions in Python~~
Sydney Hyde ~~Fraud detection with Python (GitHub of Trenton McKinney)~~
Machine learning for credit card fraud detection (Le Borgne and Nontempi)
Sreeram Anantharaman ~~Credit card fraud detection by Nikhil Adithyan on Medium.com~~
Zefang Min ~~Machine learning: jumpstart (JVP: p. 331-381)~~
Surya Eada ~~Naive Bayes classification~~
Shike Xu ~~Support vector machine~~
Jintao Zhang ~~Decision trees and random forests~~
Sreeram Anantharaman ~~XGBoost~~
Jun Yan ~~Bagging verus boosting~~
Sydney Hyde ~~Basics on Neural Network~~
Shike Xu ~~Recurrent Neural Network~~
Shike Xu ~~Gradient Descent~~
Jintao Zhang ~~Neural network and deep learning~~
TensorFlow
Sydney Hyde~~A Kaggle competition walkthrough~~
Zefang Min ~~Scope of variables~~
Sydney Hyde ~~Web scraping~~
Surya Teja Eada ~~Calling R from Python~~
Creating modules and packages
Jintao Zhang ~~Visualization with Matplotlib (JVP: p.217-274)~~
Sreeram Anantharaman ~~Advanced Matplotlib: customization; 3d; maps (JVP: p.275-310)~~
Statistical modeling with statmodels
1.1. Final Presentation Order¶
import random
presenters = ["Anantharaman, Sreeram", "Eada, Surya Teja","Hyde, Sydney",
"Min, Zefang", "Xu, Shike","Zhang, Jintao"]
random.seed(719075)
random.sample(presenters, 6)
['Zhang, Jintao',
'Hyde, Sydney',
'Eada, Surya Teja',
'Anantharaman, Sreeram',
'Min, Zefang',
'Xu, Shike']