View source: R/summary.projoint_results.R
| summary.projoint_results | R Documentation |
projoint_resultsCreates a concise tabular summary of a projoint_results object,
including the chosen estimand, analysis structure, standard-error settings,
and a data frame of estimates.
## S3 method for class 'projoint_results'
summary(object, ...)
object |
An object of class |
... |
Additional arguments (ignored). |
A data frame (often a tibble) summarizing the estimated effects.
At minimum, it contains the columns produced in object$estimates
(e.g., attribute/level identifiers and the point estimate with its
standard error and confidence interval in columns such as
estimate, std.error, conf.low, conf.high).
This table is suitable for further processing or printing.
data(exampleData1)
# Reshape data for two base tasks + repeated (for IRR estimation)
dat <- reshape_projoint(
exampleData1,
.outcomes = c("choice1", "choice2", "choice1_repeated_flipped")
)
# Build a valid choice-level QoI
att <- unique(dat$labels$attribute_id)[1]
lev_ids <- dat$labels$level_id[dat$labels$attribute_id == att]
lev_names <- sub(".*:", "", lev_ids)
q <- set_qoi(
.structure = "choice_level",
.estimand = "mm",
.att_choose = att,
.lev_choose = lev_names[2],
.att_notchoose = att,
.lev_notchoose = lev_names[1]
)
# Fit model
fit <- projoint(dat, .qoi = q)
# Get the tabular summary of estimates
tab <- summary(fit)
head(tab)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.