This post starts from this stackoverflow question.
Category Uncategorized
Python – argparse
Documentation here.
The interesting part is after you pass the variables to the parser and finished parsing the arguments. The result will be stored in a namespace object, where you can either call the members inside that namespace by calling args.input/args.output like calling an object attribute, or you can use the `vars` command to turn the namespace into a dictionary to work with.
Stanford Machine Learning
I learned a new series of machine learning from Stanford beyond the one taught by Andrew Ng. It was taught by Travor Hastie and Rob Tibshiran.
HTTPS
Amazon API
Here is the documentation of how to use Amazon API:
Depreciation vs Compound Interest
(1+n) ^ (1/n) ~ e (Proof)
R – an equivalent of Python BeautifulSoup – Rvest from Hadley Wickham
I learned this package from a r-bloggers post.
