Installation

Install R & Quarto

You need both:

We also recommend working with an IDE that has good support for R, Quarto, and Shiny.

RStudio is great, and we also like VSCode and Positron.

Install the {surveydown} R package

The {surveydown} R package is not yet on CRAN, but you can install the development version from GitHub with the following command in your R console:

# install.packages("remotes")
remotes::install_github("surveydown-dev/surveydown")

Version Control

We made some R functions to make it easier to keep your R package.

To check which version of the {surveydown} package you have installed, run:

surveydown::sd_version()

To update to the latest version of the {surveydown} package, run:

surveydown::sd_update()
Back to top