Skip to content

Commit 60de03d

Browse files
Add installation instructions for downloading rmarkdown for regression courses via package
1 parent 613ac90 commit 60de03d

File tree

3 files changed

+28
-32
lines changed

3 files changed

+28
-32
lines changed

individual_modules/regression_analysis_with_R/introduction_to_regression.ipynb

Lines changed: 0 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -97,36 +97,6 @@
9797
"id": "1444d817-524d-4553-b96d-807e92e2f8c0",
9898
"metadata": {},
9999
"source": [
100-
"## Overview of Workshop\n",
101-
"\n",
102-
"Welcome to Introductory Regression Analysis with R. Our aim is to provide you with a comprehensive introduction to the statistical tool regression and how to perform these analyses in R.\n",
103-
"\n",
104-
"By the end of this session you will be able to:\n",
105-
"\n",
106-
"* describe what regression is.\n",
107-
"* fit a range of regression models with R including:\n",
108-
" * simple linear regression\n",
109-
" * multiple linear regression \n",
110-
" * logistic regression\n",
111-
"* select the appropriate regression model for either a continuous or binary outcome\n",
112-
"* describe the concept behind hypothesis testing in regression analysis\n",
113-
"* interpret the coefficients of a regression model\n",
114-
"* make predictions from a regression model\n",
115-
"* describe the between regression and other common statistical tools\n",
116-
"\n",
117-
"## Pre-requisites\n",
118-
"\n",
119-
"This course will not include an introduction to R, or how to setup and use R or Rstudio. It is assumed you are comfortable coding in R and are familiar with:\n",
120-
"\n",
121-
"* how to write and execute commands in the R console\n",
122-
"* what type of variables are available in R and how to work with these\n",
123-
"\n",
124-
"## Course Notes\n",
125-
"\n",
126-
"This tutorial contains the course notes, example code snippets plus explanations, exercises for you to try with solutions and quiz questions to test your knowledge. Attend a workshop on this topic means there are people on hand to help if you have any questions or issues with the materials. However, these have also been designed such that you should also be able to work through them independently. \n",
127-
"\n",
128-
"You can navigate through the section using the menu on the side.\n",
129-
"\n",
130100
"# Introduction to Regression\n",
131101
"\n",
132102
"## What is Regression?\n",

individual_modules/section_landing_pages/advanced_regression_analysis_with_R.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,17 @@ We also assume that you are comfortable with fitting in R and interpreting the o
2323
- multiple linear regression with categorical, binary or continuous predictor variables
2424
- logistic regression
2525

26-
If not we recommend that you consult our pre-requisite course [Introductory Regression Analysis with R](regression_analysis_with_R.md).
26+
If not we recommend that you consult our pre-requisite course [Introductory Regression Analysis with R](regression_analysis_with_R.md).
27+
28+
## Install necessary R packages
29+
30+
There are three packages need for this workshop. The first two (devtools & learnr) are available from CRAN. The third is a package we have developed with the course materials in and is available from GitHub (cfrrRTutorials).
31+
32+
This code will install these three packages.
33+
34+
```
35+
install.packages("devtools")
36+
install.packages("learnr")
37+
library(devtools)
38+
devtools::install_github("ejh243/cfrr-r-tutorials")
39+
```

individual_modules/section_landing_pages/regression_analysis_with_R.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,17 @@ Regression analysis is a fundamental statistical technique used to model the rel
1212

1313
## Pre-requisite Knowledge
1414

15-
Learners are expected to already be familiar with the basics of R, such as how to load a dataset from a local file and manipulate variables.
15+
Learners are expected to already be familiar with the basics of R, such as how to load a dataset from a local file and manipulate variables.
16+
17+
## Install nessescary R packages
18+
19+
There are three packages need for this workshop. The first two (devtools & learnr) are available from CRAN. The third is a package we have developed with the course materials in and is available from GitHub (cfrrRTutorials).
20+
21+
This code will install these three packages.
22+
23+
```
24+
install.packages("devtools")
25+
install.packages("learnr")
26+
library(devtools)
27+
devtools::install_github("ejh243/cfrr-r-tutorials")
28+
```

0 commit comments

Comments
 (0)