elements-of-statistical-learning

Reading club: The Elements of Statistical Learning

Online Course: StatLearning@Standford

  1. An Introductory Book: http://www-bcf.usc.edu/~gareth/ISL/ISLR%20Seventh%20Printing.pdf
  2. http://www.dataschool.io/15-hours-of-expert-machine-learning-videos/

The easiest way of creating notes is to duplicate one of the previous .md files and make changes to it.

Code of conduct:

  1. Create a markdown file with extension .md;
  2. Any file name works, however, file names begins with two-digit number would be a nice convention.
  3. The markdown file has to include a header session that specifies the meta data. Here is an example.
    ---
    title: "01.Introductions"
    date: 2016-06-30
    author: OctoMiao
    summary: Some basics of statistical learning
    ---
    

    The --- is used to enclose the meta data. The four fields in the example is required.

  4. The contents of the notes should be written in markdown (kramdown).
  5. Inline math is enclosed by $, e.g. $\beta$; Display math is enclosed by $$, e.g. $$\alpha + \beta = \gamma$$.
  6. Figures can be included simply using the markdown syntax ![](../assets/yourfolder/your-image.png). We suggest creating a folder with the same name of your markdown file in the assets folder. Pay attention to the path of the image. Eventhough the assets folder is under the same path as the file, we have to add ../ to the path because jekyll will generate a folder out of this markdown file.
  7. For other syntax, refer to typography of neuronstar.

Planted: by ;

Current Ref:

  • esl/readme.md