This R package helps you with analyzing data from the App-version of SlimStampen.
:warning: Beware that in the older versions (0.1.0 and 0.0.0.9000) the calculation of the alpha is only guaranteed to be accurate when each user only has one session per lesson. :warning:
If you are new to RStudio, please follow these steps.
Install R: https://cran.rstudio.com/
Choose the download that fits your system.
Install RStudio: https://www.rstudio.com/products/rstudio/download/#download
Install the recommended version for your system.
Open RStudio
Run this in the console
install.packages("devtools")
You will probably get a warning about installing RTools, you can ignore this.
If you receive the error "Error in install.packages : cannot open file ..." it means R has issues accessing your files or folders. For solutions to this problem see this page.
Run these commands in the console
library(devtools)
devtools::install_github("VanRijnLab/SlimStampeRData", build_vignettes = TRUE, dependencies = TRUE)
The console will show a prompt asking whether all packages should be updated. Select option 1 (by typing 1 and then pressing enter), this will update all packages.
Run this command in the console
vignette("SlimStampeRVignette")
This shows the tutorial in your viewer. Follow this tutorial for an explanation of the package functions. Good luck!
The "devtools" package is used to install from GitHub.
install.packages("devtools")
library(devtools)
3. If you want to be able to view the tutorial vignette, you need all dependencies to be installed.
devtools::install_github("VanRijnLab/SlimStampeRData", build_vignettes = TRUE, dependencies = TRUE)
If you don't have a need to see the vignette, you can install without the suggested packages instead (a slightly leaner install).
devtools::install_github("VanRijnLab/SlimStampeRData")
For the documentation, planning and other information check out the Wiki of this repository!
Feel free to open a new issue if you see any mistakes in the documentation or have an idea for a feature!
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.