
Just here to verify a
.sframefile’s integrity hash or read its amendment log? Verify a file now. No R, no install; it runs entirely in your browser and nothing is uploaded.
surveyframe is a research-design-first survey package
for R. Most survey tools collect answers and return counts.
surveyframe begins at the research design and carries it
through to a written results report.
The unit of work is the instrument, a typed sframe
object that stores three things together:
Because the plan and the model live inside the instrument, the link between a question, the variable it produces, and the test that variable feeds is fixed at design time. When responses come back, the plan runs in one pass and returns results already formatted for reporting, with effect sizes, a writing prompt for each finding, and the reference that supports each test.
The package works offline during examples, tests, vignettes, and
checks. Browser and Shiny entry points use open = FALSE or
explicit launch functions, so automated checks do not open a
browser.
Install from CRAN:
install.packages("surveyframe")To get unreleased changes from the development version:
remotes::install_github("MohammedAliSharafuddin/surveyframe")Optional packages are only needed for selected features:
install.packages(c("shiny", "psych", "googlesheets4", "digest", "MASS", "nnet"))Syntax generation works without installing lavaan or
seminr. Install those packages when you want to fit the
generated CFA, CB-SEM, or PLS-SEM models.
surveyframe is not a replacement for whatever collection
tool your institution already has approved – Qualtrics, REDCap, Google
Forms, or a paper form typed up afterward. It reads response data as a
plain CSV or data.frame from any of them: export from your
collection tool, rename columns to match your instrument’s item IDs (or
build the instrument to match the export), and load it. If you have
collected responses in a CSV or Google Sheet and want to start from the
analysis step, build a minimal instrument that matches your column names
and load the data directly:
library(surveyframe)
# 1. Describe the items you already collected
cs <- sf_choices("agree5", 1:5,
c("Strongly disagree", "Disagree", "Neutral", "Agree", "Strongly agree"))
i1 <- sf_item("q1", "Item 1", type = "likert", choice_set = "agree5", scale_id = "S")
i2 <- sf_item("q2", "Item 2", type = "likert", choice_set = "agree5", scale_id = "S")
sc <- sf_scale("S", "My scale", items = c("q1", "q2"))
instr <- sf_instrument("My study", components = list(cs, i1, i2, sc))
# 2. Load your CSV
responses <- read_responses("my_data.csv", instr, strict = FALSE)
# 3. Score and analyse
scored <- score_scales(responses, instr)
results <- run_analysis_plan(scored, instr)Start with:
Read all six vignettes inside R with:
browseVignettes("surveyframe")library(surveyframe)
agree5 <- sf_choices(
"agree5",
values = 1:5,
labels = c("Strongly disagree", "Disagree", "Neutral", "Agree", "Strongly agree")
)
visitor_type_choices <- sf_choices(
"visitor_type",
values = c("first_time", "repeat"),
labels = c("First-time visitor", "Repeat visitor")
)
sat_1 <- sf_item("sat_1", "The service was reliable.",
type = "likert", choice_set = "agree5", scale_id = "sat")
sat_2 <- sf_item("sat_2", "The service was responsive.",
type = "likert", choice_set = "agree5", scale_id = "sat")
sat_3 <- sf_item("sat_3", "I would recommend the service.",
type = "likert", choice_set = "agree5", scale_id = "sat")
visitor_type <- sf_item("visitor_type", "Visitor type", type = "single_choice",
choice_set = "visitor_type")
sat <- sf_scale("sat", "Satisfaction", items = c("sat_1", "sat_2", "sat_3"))
instr <- sf_instrument(
"Service Survey",
components = list(
agree5, visitor_type_choices, sat_1, sat_2, sat_3, visitor_type, sat
),
analysis_plan = list(
list(
id = "RQ1",
research_question = "Do first-time and repeat visitors differ in satisfaction?",
family = "group_comparison",
method = "mann_whitney",
roles = list(group = "visitor_type", outcome = "sat"),
options = list(alpha = 0.05)
)
)
)
write_sframe(instr, tempfile(fileext = ".sframe"))
# See the instrument as a survey a respondent would fill in:
export_static_survey(instr, open = FALSE)write_sframe() validates the instrument and writes the
validated object, including the validation flag, the analysis plan, and
any saved model specifications. export_static_survey()
renders it as a self-contained HTML survey, the same function covered in
“Visual tools” below.
responses <- data.frame(
respondent_id = paste0("R", 1:5),
sat_1 = c(4, 5, 3, 4, NA),
sat_2 = c(5, 4, 3, 4, 5),
sat_3 = c(4, 5, 2, 4, 4),
visitor_type = c("first_time", "repeat", "first_time", "repeat", "first_time")
)
resp <- read_responses(responses, instr, respondent_id = "respondent_id", strict = FALSE)
score_scales(resp, instr)
missing_data_report(resp, instr)Each block binds a research question to a technique and to the
variables that fill each role. run_analysis_plan() runs
every block and returns one result per question. Earlier
.sframe files using variables and
test fields remain compatible.
results <- run_analysis_plan(resp, instr)
resultsSupported method IDs include descriptives, missing data, quality checks, reliability, EFA readiness and solutions, CFA, CB-SEM, and PLS-SEM syntax, chi-square, Fisher’s exact test, McNemar, Cochran’s Q, t-tests, Mann-Whitney, Wilcoxon, one- and two-way ANOVA, ANCOVA, repeated-measures ANOVA, Kruskal-Wallis, Friedman, Pearson, Spearman, and Kendall correlations, partial correlations, linear and logistic regression, mediation, and moderation. Each technique reports an APA statistic, an effect size where it applies, a writing prompt, and the reference that supports it.
render_results(results, instr, output_file = tempfile(fileext = ".html"))The report holds one section per research question, with the APA result, the writing prompt, a space for the interpretation, and a reference list compiled from the techniques used.
if (requireNamespace("psych", quietly = TRUE)) {
reliability_report(resp, instr, omega = FALSE)
efa_report(resp, instr)
}
cfa_syntax(instr)
cfa_lavaan_syntax(instr, ordered = TRUE)model <- sf_model(
"model_1",
"Satisfaction model",
type = "cb_sem",
constructs = list(
sf_construct("SAT", "Satisfaction", c("sat_1", "sat_2", "sat_3"))
)
)
instr <- add_model(instr, model)
model_json(model)
sem_lavaan_syntax(model, instr)pls_model <- sf_model(
"pls_1",
"Satisfaction and loyalty PLS model",
type = "pls_sem",
constructs = list(
sf_construct("SAT", "Satisfaction", c("sat_1", "sat_2"), mode = "composite"),
sf_construct("LOY", "Loyalty", "sat_3", mode = "single_item")
),
paths = list(sf_path("SAT", "LOY")),
options = list(bootstrap = 5000)
)
seminr_syntax(pls_model)render_report(
instr,
data = resp,
output_file = tempfile(fileext = ".html"),
include_codebook = TRUE,
include_quality = TRUE,
include_missing = TRUE,
include_descriptives = TRUE,
include_analysis = TRUE,
include_models = TRUE
)The built-in HTML fallback does not require Quarto. If the Quarto CLI
is available locally, render_report() can use the bundled
template.
launch_builder(open = FALSE)
export_static_survey(instr, open = FALSE)Use launch_builder() to author the questionnaire, the
plan, and the model and to export the .sframe file and
model syntax; it runs no statistics. launch_studio()
uploads responses, runs the plan on its Analysis Plan screen, and
renders the report on its Export screen. launch_dashboard()
is a read-only response explorer. Demo launchers are available for
training:
launch_builder_demo(open = FALSE)
# launch_studio_demo()
# launch_dashboard_demo()Interactive functions such as
launch_builder(open = TRUE), launch_studio(),
render_survey(), and launch_dashboard() are
available for manual use. Tests and examples avoid opening browsers.
Small-sample inference, multi-criteria decision analysis, and text and open-ended response analysis all arrive in 0.4.0. Small-sample and MCDM were once planned as two releases, v0.4 and v0.5, and text analysis had at one stage its own working label before it, too, was folded into 0.4.0. There is no 0.3.5 and no 0.5.x.
0.4.0 adds small-sample helpers validated by a simulation study
(Hodges-Lehmann, paired-Wilcoxon pseudomedian, exact Fisher odds-ratio
intervals, Firth logistic regression); 10 MCDM methods (TOPSIS, AHP,
ANP, DEMATEL, VIKOR, MOORA, SMART, WASPAS, PROMETHEE, ELECTRE) with 2
new question types for collecting judgements, weight-sensitivity
analysis, and declared conjoint designs; a 9-method text and open-ended
response analysis family (term/n-gram frequency, keyword in context,
co-occurrence and co-occurrence networks, sentiment, document-feature
matrices, and topic modelling via LDA or a structural topic model); and
a disclosed-amendment and Git-linked provenance mechanism alongside the
existing .sframe integrity hash. See NEWS.md
for the full detail on each.
After 0.4.0, no new capability theme for at least one release cycle. Four themes landing in one release is already more than this project should repeat; 0.4.1 and 0.4.2 are stabilisation and bug-fix releases against what 0.4.0 shipped, not a vehicle for new method families. If that changes, it will be stated here first, not discovered from a diff.
If this package is ever archived by CRAN, the GitHub
repository remains the canonical source:
remotes::install_github("MohammedAliSharafuddin/surveyframe").
Each CRAN release is also deposited to Zenodo with its own DOI, so a
specific version stays citable and retrievable independently of both
CRAN’s and GitHub’s continued availability.
citation("surveyframe")MIT. See LICENSE.