-
Notifications
You must be signed in to change notification settings - Fork 22
installing ccdata
R which is a highly respected, free statistics package used by academics around the world. We recommend additionally installing RStudio --- a friendly interface to R.
-
Download and install R from here
-
Download and install RStudio. This is a nice shiny interface for R, and the easiest way to use it. Download it here. There should be an 'installer' for your operating system.
Operating specific instructions and links are detailed below
Install R by downloading and running this .exe file from CRAN. Also, please install the RStudio IDE.
Install R by downloading and running this .pkg file from CRAN. Also, please install the RStudio IDE.
You can download the binary files for your distribution
from CRAN. Or
you can use your package manager (e.g. for Debian/Ubuntu
run sudo apt-get install r-base
and for Fedora run
sudo yum install R
). Also, please install the
RStudio IDE.
You will need the devtools package: https://www.rstudio.com/products/rpackages/devtools/.
Within R Studio (main left-hand window) enter the following:
install.packages("devtools") # installs devtools from CRAN
library(devtools) # loads devtools
Once devtools
is installed and made available, you will then need to install cleanEHR
install.packages("cleanEHR")
library(cleanEHR) # loads cleanEHR
You can see more information on the cleanEHR package here.
Within R Studio hit the Install option with the Packages tab and type cleanEHR
into the search box. This will automatically install the latest version of cleanEHR and all dependencies.