- Introduction
- Syllabus
- Assignments
- Homework
- Labs
- Data Project
- Final exam
- Meetup Presentation
- The
DATA606
R Package - Using R Markdown
Spring 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.
We will use Blackboard primary only for submitting assignments. Please submit:
See http://data606.net/schedule/ for up-to-date calendar.
Start | Due Date | Chapter | Topic |
---|---|---|---|
Jan-25 | Feb-10 | 1 | Intro to Data |
Feb-11 | Feb-17 | 2 | Probability |
Feb-18 | Mar-3 | 3 | Distributions |
Mar-4 | Mar-17 | 4 | Foundation for Inference |
Mar-18 | Mar-24 | 5 | Inference for Numerical Data |
Mar-25 | Mar-31 | 6 | Inference for Categorical Data |
Apr-1 | Apr-14 | 7 | Linear Regression |
Apr-15 | May-5 | 8 | Multiple & Logistic Regression |
May-6 | May-15 | Navarro | Introduction to Bayesian Analysis |
May-16 | May-19 | 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/DATA606Spring2019/blob/master/R/Setup.R
library('DATA606')
- Load the packagevignette(package='DATA606')
- Lists vignettes in the DATA606 packagevignette('os3')
- Loads a PDF of the OpenIntro Statistics bookdata(package='DATA606')
- Lists data available in the packagegetLabs()
- Returns a list of the available labsviewLab('Lab0')
- Opens Lab0 in the default web browserstartLab('Lab0')
- Starts Lab0 (copies to getwd()), opens the Rmd fileshiny_demo()
- Lists available Shiny appsR Markdown files are provided for all the labs. You can start a lab using the DATA606::startLab
function.
However, creating new R Markdown files in RStudio can be done by clicking File
> New File
> R Markdown
.