├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── IntroductiontoMachineLearning.Rproj ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── README.md ├── Your_forest_explained_files └── figure-html │ ├── unnamed-chunk-3-1.png │ ├── unnamed-chunk-5-1.png │ ├── unnamed-chunk-6-1.png │ ├── unnamed-chunk-7-1.png │ └── unnamed-chunk-8-1.png ├── data ├── x.rda └── y.rda ├── docs ├── Douglass_IntroductionToMachineLearning_2018_FinalExame.nb.html ├── Douglass_IntroductionToMachineLearning_2018_FinalExame.rmd ├── Douglass_IntroductionToMachineLearning_2018_Syllabus_Day1.nb.html ├── Douglass_IntroductionToMachineLearning_2018_Syllabus_Day1.rmd ├── Douglass_IntroductionToMachineLearning_2018_Syllabus_Day2.nb.html ├── Douglass_IntroductionToMachineLearning_2018_Syllabus_Day2.rmd ├── Douglass_IntroductionToMachineLearning_2018_Syllabus_Day2b.nb.html ├── Douglass_IntroductionToMachineLearning_2018_Syllabus_Day2b.rmd └── min_depth_frame.rda ├── revdep ├── .gitignore └── email.yml ├── src └── .gitignore └── tests ├── testthat.R └── testthat └── test-my-test.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForPeaceAndSecurityStudies/IntroductiontoMachineLearning/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForPeaceAndSecurityStudies/IntroductiontoMachineLearning/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForPeaceAndSecurityStudies/IntroductiontoMachineLearning/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /IntroductiontoMachineLearning.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForPeaceAndSecurityStudies/IntroductiontoMachineLearning/HEAD/IntroductiontoMachineLearning.Rproj -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2018 2 | COPYRIGHT HOLDER: My Name 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForPeaceAndSecurityStudies/IntroductiontoMachineLearning/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForPeaceAndSecurityStudies/IntroductiontoMachineLearning/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForPeaceAndSecurityStudies/IntroductiontoMachineLearning/HEAD/NEWS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForPeaceAndSecurityStudies/IntroductiontoMachineLearning/HEAD/README.md -------------------------------------------------------------------------------- /Your_forest_explained_files/figure-html/unnamed-chunk-3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForPeaceAndSecurityStudies/IntroductiontoMachineLearning/HEAD/Your_forest_explained_files/figure-html/unnamed-chunk-3-1.png -------------------------------------------------------------------------------- /Your_forest_explained_files/figure-html/unnamed-chunk-5-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForPeaceAndSecurityStudies/IntroductiontoMachineLearning/HEAD/Your_forest_explained_files/figure-html/unnamed-chunk-5-1.png -------------------------------------------------------------------------------- /Your_forest_explained_files/figure-html/unnamed-chunk-6-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForPeaceAndSecurityStudies/IntroductiontoMachineLearning/HEAD/Your_forest_explained_files/figure-html/unnamed-chunk-6-1.png -------------------------------------------------------------------------------- /Your_forest_explained_files/figure-html/unnamed-chunk-7-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForPeaceAndSecurityStudies/IntroductiontoMachineLearning/HEAD/Your_forest_explained_files/figure-html/unnamed-chunk-7-1.png -------------------------------------------------------------------------------- /Your_forest_explained_files/figure-html/unnamed-chunk-8-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForPeaceAndSecurityStudies/IntroductiontoMachineLearning/HEAD/Your_forest_explained_files/figure-html/unnamed-chunk-8-1.png -------------------------------------------------------------------------------- /data/x.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForPeaceAndSecurityStudies/IntroductiontoMachineLearning/HEAD/data/x.rda -------------------------------------------------------------------------------- /data/y.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForPeaceAndSecurityStudies/IntroductiontoMachineLearning/HEAD/data/y.rda -------------------------------------------------------------------------------- /docs/Douglass_IntroductionToMachineLearning_2018_FinalExame.nb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForPeaceAndSecurityStudies/IntroductiontoMachineLearning/HEAD/docs/Douglass_IntroductionToMachineLearning_2018_FinalExame.nb.html -------------------------------------------------------------------------------- /docs/Douglass_IntroductionToMachineLearning_2018_FinalExame.rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForPeaceAndSecurityStudies/IntroductiontoMachineLearning/HEAD/docs/Douglass_IntroductionToMachineLearning_2018_FinalExame.rmd -------------------------------------------------------------------------------- /docs/Douglass_IntroductionToMachineLearning_2018_Syllabus_Day1.nb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForPeaceAndSecurityStudies/IntroductiontoMachineLearning/HEAD/docs/Douglass_IntroductionToMachineLearning_2018_Syllabus_Day1.nb.html -------------------------------------------------------------------------------- /docs/Douglass_IntroductionToMachineLearning_2018_Syllabus_Day1.rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForPeaceAndSecurityStudies/IntroductiontoMachineLearning/HEAD/docs/Douglass_IntroductionToMachineLearning_2018_Syllabus_Day1.rmd -------------------------------------------------------------------------------- /docs/Douglass_IntroductionToMachineLearning_2018_Syllabus_Day2.nb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForPeaceAndSecurityStudies/IntroductiontoMachineLearning/HEAD/docs/Douglass_IntroductionToMachineLearning_2018_Syllabus_Day2.nb.html -------------------------------------------------------------------------------- /docs/Douglass_IntroductionToMachineLearning_2018_Syllabus_Day2.rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForPeaceAndSecurityStudies/IntroductiontoMachineLearning/HEAD/docs/Douglass_IntroductionToMachineLearning_2018_Syllabus_Day2.rmd -------------------------------------------------------------------------------- /docs/Douglass_IntroductionToMachineLearning_2018_Syllabus_Day2b.nb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForPeaceAndSecurityStudies/IntroductiontoMachineLearning/HEAD/docs/Douglass_IntroductionToMachineLearning_2018_Syllabus_Day2b.nb.html -------------------------------------------------------------------------------- /docs/Douglass_IntroductionToMachineLearning_2018_Syllabus_Day2b.rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForPeaceAndSecurityStudies/IntroductiontoMachineLearning/HEAD/docs/Douglass_IntroductionToMachineLearning_2018_Syllabus_Day2b.rmd -------------------------------------------------------------------------------- /docs/min_depth_frame.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForPeaceAndSecurityStudies/IntroductiontoMachineLearning/HEAD/docs/min_depth_frame.rda -------------------------------------------------------------------------------- /revdep/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForPeaceAndSecurityStudies/IntroductiontoMachineLearning/HEAD/revdep/.gitignore -------------------------------------------------------------------------------- /revdep/email.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForPeaceAndSecurityStudies/IntroductiontoMachineLearning/HEAD/revdep/email.yml -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForPeaceAndSecurityStudies/IntroductiontoMachineLearning/HEAD/src/.gitignore -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForPeaceAndSecurityStudies/IntroductiontoMachineLearning/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-my-test.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForPeaceAndSecurityStudies/IntroductiontoMachineLearning/HEAD/tests/testthat/test-my-test.R --------------------------------------------------------------------------------