├── .DS_Store
├── .gitignore
├── README.md
├── RICLPM.Rproj
├── _site.yml
├── docs
    ├── index.html
    └── site_libs
    │   ├── bootstrap-3.3.5
    │       ├── css
    │       │   ├── bootstrap-theme.css
    │       │   ├── bootstrap-theme.css.map
    │       │   ├── bootstrap-theme.min.css
    │       │   ├── bootstrap.css
    │       │   ├── bootstrap.css.map
    │       │   ├── bootstrap.min.css
    │       │   ├── cerulean.min.css
    │       │   ├── cosmo.min.css
    │       │   ├── darkly.min.css
    │       │   ├── flatly.min.css
    │       │   ├── fonts
    │       │   │   ├── Lato.ttf
    │       │   │   ├── LatoBold.ttf
    │       │   │   ├── LatoItalic.ttf
    │       │   │   ├── NewsCycle.ttf
    │       │   │   ├── NewsCycleBold.ttf
    │       │   │   ├── OpenSans.ttf
    │       │   │   ├── OpenSansBold.ttf
    │       │   │   ├── OpenSansBoldItalic.ttf
    │       │   │   ├── OpenSansItalic.ttf
    │       │   │   ├── OpenSansLight.ttf
    │       │   │   ├── OpenSansLightItalic.ttf
    │       │   │   ├── Raleway.ttf
    │       │   │   ├── RalewayBold.ttf
    │       │   │   ├── Roboto.ttf
    │       │   │   ├── RobotoBold.ttf
    │       │   │   ├── RobotoLight.ttf
    │       │   │   ├── RobotoMedium.ttf
    │       │   │   ├── SourceSansPro.ttf
    │       │   │   ├── SourceSansProBold.ttf
    │       │   │   ├── SourceSansProItalic.ttf
    │       │   │   ├── SourceSansProLight.ttf
    │       │   │   └── Ubuntu.ttf
    │       │   ├── journal.min.css
    │       │   ├── lumen.min.css
    │       │   ├── paper.min.css
    │       │   ├── readable.min.css
    │       │   ├── sandstone.min.css
    │       │   ├── simplex.min.css
    │       │   ├── spacelab.min.css
    │       │   ├── united.min.css
    │       │   └── yeti.min.css
    │       ├── fonts
    │       │   ├── glyphicons-halflings-regular.eot
    │       │   ├── glyphicons-halflings-regular.svg
    │       │   ├── glyphicons-halflings-regular.ttf
    │       │   ├── glyphicons-halflings-regular.woff
    │       │   └── glyphicons-halflings-regular.woff2
    │       ├── js
    │       │   ├── bootstrap.js
    │       │   ├── bootstrap.min.js
    │       │   └── npm.js
    │       └── shim
    │       │   ├── html5shiv.min.js
    │       │   └── respond.min.js
    │   ├── highlightjs-9.12.0
    │       ├── default.css
    │       ├── highlight.js
    │       └── textmate.css
    │   ├── jquery-1.11.3
    │       └── jquery.min.js
    │   └── navigation-1.1
    │       ├── codefolding.js
    │       ├── sourceembed.js
    │       └── tabsets.js
└── index.rmd
/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ellenhamaker/RI-CLPM/288e01935a876f28adaca96ddb14c5a989519c96/.DS_Store
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
 1 | # History files
 2 | .Rhistory
 3 | .Rapp.history
 4 | 
 5 | # Session Data files
 6 | .RData
 7 | 
 8 | # Example code in package build process
 9 | *-Ex.R
10 | 
11 | # Output files from R CMD build
12 | /*.tar.gz
13 | 
14 | # Output files from R CMD check
15 | /*.Rcheck/
16 | 
17 | # RStudio files
18 | .Rproj.user/
19 | 
20 | # produced vignettes
21 | vignettes/*.html
22 | vignettes/*.pdf
23 | 
24 | # OAuth2 token, see https://github.com/hadley/httr/releases/tag/v0.3
25 | .httr-oauth
26 | 
27 | # knitr and R markdown default cache directories
28 | /*_cache/
29 | /cache/
30 | 
31 | # Temporary files created by R markdown
32 | *.utf8.md
33 | *.knit.md
34 | 
35 | # Shiny token, see https://shiny.rstudio.com/articles/shinyapps.html
36 | rsconnect/
37 | .Rproj.user
38 | 
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # RI-CLPM & Extensions
2 | 
3 | This repository and its Github Pages have been moved to [jeroendmulder.github.io/RI-CLPM](jeroendmulder.github.io/RI-CLPM). This repository's Github Page now serves as an automatic redirect. 
4 | 
5 | 
6 | 
--------------------------------------------------------------------------------
/RICLPM.Rproj:
--------------------------------------------------------------------------------
 1 | Version: 1.0
 2 | 
 3 | RestoreWorkspace: Default
 4 | SaveWorkspace: Default
 5 | AlwaysSaveHistory: Default
 6 | 
 7 | EnableCodeIndexing: Yes
 8 | UseSpacesForTab: Yes
 9 | NumSpacesForTab: 2
10 | Encoding: UTF-8
11 | 
12 | RnwWeave: Sweave
13 | LaTeX: pdfLaTeX
14 | 
15 | BuildType: Website
16 | 
--------------------------------------------------------------------------------
/_site.yml:
--------------------------------------------------------------------------------
 1 | name: "RI-CLPM"
 2 | output_dir: "docs"
 3 | navbar:
 4 |   title: "Redirecting..."
 5 |   left:
 6 |     - text: "Home"
 7 |       href: index.html
 8 | output:
 9 |   html_document:
10 |     theme: flatly
11 |     highlight: default
12 |     
13 | 
14 |  
--------------------------------------------------------------------------------
/docs/index.html:
--------------------------------------------------------------------------------
  1 | 
  2 | 
  3 | 
  4 | 
  5 | 
  6 | 
  7 | 
269 | 
270 | 
271 | 
272 | 
273 | 
274 |   
275 |     
283 |     
284 |       
285 |         - 
286 |   Home
287 | 288 |
289 |       
292 |     
293 |   
294 | 
295 | 
296 | 
302 | 
303 | 
304 | 
305 | 
306 | Redirecting to https://jeroendmulder.github.io/RI-CLPM
307 | 
308 | 
309 | 
310 | 
311 | 
312 | 
313 | 
314 |