- Introduction
- Syllabus
- Assignments
- Homework
- Labs
- Data Project
- Final exam
- Meetup Presentation
- The
DATA606
R Package - Using R Markdown
Fall 2019
DATA606
R PackageA little about me:
Syllabus and course materials are here: http://data606.net
The site is built using the Blogdown R package and hosted on Github. Each page of the site has a “Improve this page” link at the bottom right, use that to start a pull request on Github.
We will use Blackboard primary only for submitting assignments. Please submit:
Start | Due Date | Chapter | Topic |
---|---|---|---|
Aug-27 | Sep-1 | 1 | Intro to Data |
Sep-2 | Sep-8 | 2 | Summarizing Data |
Sep-9 | Sep-15 | 3 | Probability |
Sep-16 | Sep-29 | 4 | Distributions |
Sep-30 | Oct-13 | 5 | Foundation for Inference |
Oct-14 | Oct-20 | 6 | Inference for Numerical Data |
Oct-21 | Oct-27 | 7 | Inference for Categorical Data |
Oct-28 | Nov-10 | 8 | Linear Regression |
Nov-11 | Nov-24 | 9 | Multiple & Logistic Regression |
Dec-2 | Dec-11 | Navarro | Introduction to Bayesian Analysis |
Dec-12 | Dec-16 | Final Exam |
DATA606
package: https://github.com/jbryer/DATA606Fall2018/issuesDATA606
R PackageThe package can be installed from Github using the devtools
package.
devtools::install_github('jbryer/DATA606')
Download the Setup.R
script here: https://github.com/jbryer/DATA606Fall2019/blob/master/R/Setup.R
library('DATA606')
- Load the packagevignette(package='DATA606')
- Lists vignettes in the DATA606 packagevignette('os4')
- Loads a PDF of the OpenIntro Statistics bookdata(package='DATA606')
- Lists data available in the packagegetLabs()
- Returns a list of the available labsviewLab('Lab1')
- Opens Lab1 in the default web browserstartLab('Lab1')
- Starts Lab1 (copies to getwd()), opens the Rmd fileshiny_demo()
- Lists available Shiny appsR Markdown files are provided for all the labs and homework.
DATA606::startLab
function.However, creating new R Markdown files in RStudio can be done by clicking File
> New File
> R Markdown
.
For more information about R Markdown, check out the RStudio page at https://rmarkdown.rstudio.com/