Import a LimeSurvey survey in Tab Separated Values format (.txt)

Survey_from_tsv(file)

Arguments

file

The path to the file.

Value

A Survey.

Examples

### Get location of one of the example files
exampleFile <-
  system.file(
    "extdata",
    "export-of-survey-with-one-question-as-tsv.txt",
    package = "limonaid"
  );

### Import file
lsrv <- limonaid::Survey_from_tsv(exampleFile);
#> Called from: limonaid::Survey_from_tsv(exampleFile)