├── .gitignore ├── xaringan_slides.Rproj ├── README.Rmd └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | .Rhistory 2 | .RData 3 | .Rproj.user 4 | -------------------------------------------------------------------------------- /xaringan_slides.Rproj: -------------------------------------------------------------------------------- 1 | Version: 1.0 2 | 3 | RestoreWorkspace: No 4 | SaveWorkspace: No 5 | AlwaysSaveHistory: No 6 | 7 | EnableCodeIndexing: Yes 8 | UseSpacesForTab: Yes 9 | NumSpacesForTab: 2 10 | Encoding: UTF-8 11 | 12 | RnwWeave: knitr 13 | LaTeX: XeLaTeX 14 | 15 | AutoAppendNewline: Yes 16 | StripTrailingWhitespace: Yes 17 | 18 | BuildType: Website 19 | -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- 1 | --- 2 | output: github_document 3 | --- 4 | 5 | # xaringan_slides 6 | 7 | Links to HTML5 presentations made using the R package [**{xaringan}**](https://github.com/yihui/xaringan/). 8 | 9 | ## Presentations 10 | 11 | + [Setting up your PhD (or other research project!) as an R package by Ella Kaye](https://htmlpreview.github.io/?https://raw.githubusercontent.com/r-oxford/r-oxford.github.io/master/slides/2018_04_PhD_to_package.html) 12 | 13 | + [Is the Parkland Event Different? Using R to Investigate the Persistence of Public Interest in Mass Shooting Events by Ben Marwick](https://rawgit.com/benmarwick/Seattle-UseR-Group-April-2018/master/Seattle-UseR-Group-April-2018.html) 14 | 15 | + [Power Analysis for Longitudinal 2- and 3-Level Models Challenges and Some Solutions Using the R Package powerlmm by Kristoffer Magnusson](http://rpsychologist.com/slides/powerlmm-intro-20180411/) 16 | 17 | + [Political Information, New Media, and Twitter bots by Michael W. Kearney](https://mkearney.github.io/dsa_execweek_talk/) 18 | 19 | + [Statistical Inference: A Tidy Approach by Dr. Chester Ismay](https://ismayc.github.io/talks/ness-infer/slide_deck.html) 20 | 21 | + [Exploring and Visualizing School Achievement and School Effects by Daniel Anderson](http://www.dandersondata.com/talks/ncme18/) 22 | 23 | + [Visualizing GeoData with R: Introduction to sf & tmap by Thomas Lo Russo & Max Grütter](https://tlorusso.github.io/geodata_workshop/) 24 | 25 | + [R: Collecting and Analyzing Twitter Data featuring {rtweet} by Michael W. Kearney](https://mkearney.github.io/nicar_tworkshop/) 26 | 27 | + [R-Ladies Presentation Ninja with xaringan by Alison Presmanes Hill](https://alison.rbind.io/slides/rladies-demo-slides.html) 28 | 29 | + [Take A Sad Plot & Make It Better: A Case Study with R and ggplot2 by Alison Presmanes Hill](https://apreshill.github.io/ohsu-biodatavis/slides.html) 30 | 31 | + [Presentation Ninja with xaringan by Yihui Xie](https://slides.yihui.name/xaringan/) 32 | 33 | + [Steve's Xaringan Presentation: POSC 0000 – It Would Be Cool If This Were an Actual Class Presentation by Steven V. Miller](http://svmiller.com/miscellany/svm-xaringan-example.html) 34 | 35 | + []() 36 | 37 | + []() 38 | 39 | + []() 40 | 41 | + []() 42 | 43 | + []() 44 | 45 | + []() 46 | 47 | + []() 48 | 49 | + []() 50 | 51 | + []() 52 | 53 | + []() 54 | 55 | ## About {xaringan} 56 | 57 | + [Why xaringan / remark.js for HTML5 Presentations? by Yihui Xie](https://yihui.name/en/2017/08/why-xaringan-remark-js/) 58 | 59 | + [A Twist of Hygge in xaringan by Yihui Xie](https://yihui.name/en/2018/02/xaringan-hygge/) 60 | 61 | + [Make Your Presentations Fun in Xaringan by Steven V. Miller](http://svmiller.com/blog/2018/02/r-markdown-xaringan-theme/) 62 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | xaringan\_slides 3 | ================ 4 | 5 | Links to HTML5 presentations made using the R package [**{xaringan}**](https://github.com/yihui/xaringan/). 6 | 7 | Presentations 8 | ------------- 9 | 10 | - [Setting up your PhD (or other research project!) as an R package by Ella Kaye](https://htmlpreview.github.io/?https://raw.githubusercontent.com/r-oxford/r-oxford.github.io/master/slides/2018_04_PhD_to_package.html) 11 | 12 | - [Is the Parkland Event Different? Using R to Investigate the Persistence of Public Interest in Mass Shooting Events by Ben Marwick](https://rawgit.com/benmarwick/Seattle-UseR-Group-April-2018/master/Seattle-UseR-Group-April-2018.html) 13 | 14 | - [Power Analysis for Longitudinal 2- and 3-Level Models Challenges and Some Solutions Using the R Package powerlmm by Kristoffer Magnusson](http://rpsychologist.com/slides/powerlmm-intro-20180411/) 15 | 16 | - [Political Information, New Media, and Twitter bots by Michael W. Kearney](https://mkearney.github.io/dsa_execweek_talk/) 17 | 18 | - [Statistical Inference: A Tidy Approach by Dr. Chester Ismay](https://ismayc.github.io/talks/ness-infer/slide_deck.html) 19 | 20 | - [Exploring and Visualizing School Achievement and School Effects by Daniel Anderson](http://www.dandersondata.com/talks/ncme18/) 21 | 22 | - [Visualizing GeoData with R: Introduction to sf & tmap by Thomas Lo Russo & Max Grütter](https://tlorusso.github.io/geodata_workshop/) 23 | 24 | - [R: Collecting and Analyzing Twitter Data featuring {rtweet} by Michael W. Kearney](https://mkearney.github.io/nicar_tworkshop/) 25 | 26 | - [R-Ladies Presentation Ninja with xaringan by Alison Presmanes Hill](https://alison.rbind.io/slides/rladies-demo-slides.html) 27 | 28 | - [Take A Sad Plot & Make It Better: A Case Study with R and ggplot2 by Alison Presmanes Hill](https://apreshill.github.io/ohsu-biodatavis/slides.html) 29 | 30 | - [Presentation Ninja with xaringan by Yihui Xie](https://slides.yihui.name/xaringan/) 31 | 32 | - [Steve's Xaringan Presentation: POSC 0000 – It Would Be Cool If This Were an Actual Class Presentation by Steven V. Miller](http://svmiller.com/miscellany/svm-xaringan-example.html) 33 | 34 | - []() 35 | 36 | - []() 37 | 38 | - []() 39 | 40 | - []() 41 | 42 | - []() 43 | 44 | - []() 45 | 46 | - []() 47 | 48 | - []() 49 | 50 | - []() 51 | 52 | - []() 53 | 54 | About {xaringan} 55 | ---------------- 56 | 57 | - [Why xaringan / remark.js for HTML5 Presentations? by Yihui Xie](https://yihui.name/en/2017/08/why-xaringan-remark-js/) 58 | 59 | - [A Twist of Hygge in xaringan by Yihui Xie](https://yihui.name/en/2018/02/xaringan-hygge/) 60 | 61 | - [Make Your Presentations Fun in Xaringan by Steven V. Miller](http://svmiller.com/blog/2018/02/r-markdown-xaringan-theme/) 62 | --------------------------------------------------------------------------------