Skip to contents

Converts a tallier_export 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_export(x, ...)

Arguments

x

A tallier_export 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{
exp <- read_scoreme("export.json")
tibble::as_tibble(exp)
tibble::as_tibble(exp, include_meta = FALSE)
} # }