Skip to contents

This function serves two purposes:

  1. It generates a new survey project from a template

  2. It launches a Shiny app to preview and edit the survey

Usage

sd_studio(template = "default", path = getwd())

Arguments

template

A character string specifying the template to use. Default is "default" which uses the built-in package template. See surveydown::sd_create_survey() for other available templates.

path

A character string specifying the directory where the survey template should be created. Defaults to the current working directory.

Value

No return value, called for its side effects of creating a survey project and launching a Shiny app.

Examples

if (interactive()) {
  # Launch studio with default template
  sd_studio()

  # Launch studio with a specific template and path
  sd_studio(template = "question_types", path = "my_survey")
}