项目作者: JackSnowWolf

项目描述 :
homework for statistical learning @ columbia university
高级语言: TeX
项目地址: git://github.com/JackSnowWolf/EECS_E6690_Statistical_Learning_Homework.git


EECS E6690 Statistical Learning Homework

Provide solutions for statistical learning homework.
Homework is a combination of mathmatical proofs and R coding.

Structure

  1. .
  2. ├── hw1-questions.pdf
  3. ├── hw2-questions.pdf
  4. ├── hw3-problems.pdf
  5. ├── hw1
  6. ├── ch3467_HW1.pdf
  7. ├── ch3467_HW1.Rmd
  8. └── ...
  9. ├── hw2
  10. ├── ch3467_HW2.pdf
  11. ├── ch3467_HW2.Rmd
  12. └── ...
  13. ├── hw3
  14. ├── ch3467_HW3.pdf
  15. ├── ch3467_HW3.Rmd
  16. └── ...
  17. ├── README.md
  18. └── Template
  19. ├── homework.cls
  20. ├── UNI_HW#.pdf
  21. └── UNI_HW#.tex
  • All the questions are in root folder
  • All solutions are writen in Rmd and rendered to pdf

Note

  • Latex configuration in Rmd
    • Global configuration
      1. ---
      2. title: "EECS E6690 hw3"
      3. author: "Chong Hu ch3467"
      4. date: 'Sep 22, 2019'
      5. output:
      6. pdf_document:
      7. latex_engine: pdflatex
      8. header-includes:
      9. - \usepackage{graphicx}
      10. - \usepackage{float}
      11. ---
      1. ```{r global_options, include=FALSE}
      2. knitr::opts_chunk$set(echo = TRUE, fig.pos = 'H')
      ```
    • Configuration for plots

      e.g.
      1. ```{r, fig.height = 3.5, fig.width = 5, fig.align = "center", fig.cap="$\\boldsymbol{C_p}$ vs. Subset Size for backward setpwise selection"}