Reads a single JSON file exported from the ScoreMe app and returns a
tallier_export object containing participant metadata and all
questionnaire results.
Value
A tallier_export object: a list with elements:
exported_atTimestamp of the export (character).
export_versionSchema version string.
participantsA list of parsed participant records.
n_participantsNumber of participants.
Examples
if (FALSE) { # \dontrun{
exp <- read_scoreme("my_study_export.json")
print(exp)
wide <- scores_wide(exp)
} # }