Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
ncarchedi committed Sep 10, 2014
2 parents 6de220a + e1e75e9 commit 0d3d0a6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 951 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,13 @@ Here are our current offerings, organized by level of difficulty:
#### Beginner

- **R Programming**: The basics of programming in R
- **R Programming Alt**: Same as the original, but modified slightly for in-class use
- **R Programming Alt**: Same as the original, but modified slightly for in-class use (see below*)
- **Data Analysis**: Basic ideas in statistics and data visualization
- **Mathematical Biostatistics Boot Camp**: One- and two-sample t-tests, power, and sample size
- **Open Intro**: A very basic introduction to statistics, data analysis, and data visualization

\* *R Programming Alt is identical to R Programming, except we've eliminated the prompts for Coursera credentials at the end of each lesson and instead give students the option to send an email to their instructor notifying them of completion. Admittedly, it's sort of a hack until we come up with a more robust solution for in-class use (i.e. an instructor "dashboard").*

#### Intermediate

- **Regression Models**: The basics of regression modeling in R
Expand Down
2 changes: 1 addition & 1 deletion Regression_Models/Least_Squares_Estimation/slopedemo.R
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ myPlot <- function(beta){
mse <- mean( (y - beta * x)^2 )
title(paste("beta = ", beta, "mse = ", round(mse, 3)))
}
manipulate(myPlot(beta), beta = slider(0.4, .8, step = 0.02))
manipulate(myPlot(beta), beta = manipulate::slider(0.4, .8, step = 0.02))
Loading

0 comments on commit 0d3d0a6

Please sign in to comment.