Skip to contents

Converts a tallier_study object to a tibble by calling scores_wide() and coercing the result. One row per participant, one column per questionnaire, with participant metadata prepended by default.

Usage

as_tibble.tallier_study(x, ...)

Arguments

x

A tallier_study object.

...

Additional arguments passed to scores_wide() (e.g. include_meta = FALSE).

Value

A tibble; see scores_wide() for column details.

Details

This method is registered for tibble::as_tibble() and is available automatically when the tibble package is loaded.

Examples

if (FALSE) { # \dontrun{
study <- read_scoreme_dir("exports/")
tibble::as_tibble(study)
} # }