-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathDESCRIPTION
63 lines (63 loc) · 2.13 KB
/
DESCRIPTION
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
Package: surveydown
Title: Markdown-Based Surveys Using 'Quarto' and 'shiny'
Version: 0.8.0
Authors@R: c(
person("John Paul", "Helveston", , "john.helveston@gmail.com", role = c("aut", "cre", "cph"),
comment = c(ORCID = "0000-0002-2657-9191")),
person("Pingfan", "Hu", , "pingfan0727@gmail.com", role = c("aut", "cph"),
comment = c(ORCID = "0009-0001-4877-4844")),
person("Bogdan", "Bunea", , "buneabt@yahoo.com", role = c("aut", "cph"),
comment = c(ORCID = "0009-0006-2942-0588")),
person("Stefan", "Munnes", , "stefan.munnes@wzb.eu", role = "ctb")
)
Description: Generate surveys using markdown and R code chunks. Surveys
are composed of two files: a survey.qmd 'Quarto' file defining the
survey content (pages, questions, etc), and an app.R file defining a
'shiny' app with global settings (libraries, database configuration,
etc.) and server configuration options (e.g., conditional skipping /
display, etc.). Survey data collected from respondents is stored in a
'PostgreSQL' database. Features include controls for conditional skip
logic (skip to a page based on an answer to a question), conditional
display logic (display a question based on an answer to a question), a
customizable progress bar, and a wide variety of question types,
including multiple choice (single choice and multiple choices),
select, text, numeric, multiple choice buttons, text area, and dates.
Because the surveys render into a 'shiny' app, designers can also
leverage the reactive capabilities of 'shiny' to create dynamic and
interactive surveys.
License: MIT + file LICENSE
URL: https://pkg.surveydown.org
BugReports: https://github.com/surveydown-dev/surveydown/issues
Depends:
R (>= 4.1.0)
Imports:
bslib,
cli,
DBI,
dotenv,
DT,
fs,
htmltools,
jsonlite,
markdown,
pool,
quarto,
RPostgres,
rstudioapi,
rvest,
shiny,
shinyjs,
shinyWidgets,
usethis,
utils,
xml2,
yaml
Suggests:
glue,
knitr,
leaflet,
testthat
Encoding: UTF-8
LazyData: true
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.3.2