limer_upload_tsv_to_limesurvey {limonaid} | R Documentation |
Upload a tab separated limesurvey text file
Description
To use this function, you need to setup R for the LimeSuevey API, as
described in vignette("limesurvey_api_setup")
.
Usage
limer_upload_tsv_to_limesurvey(
ls_txt_path,
open_url = "preview",
hostname = getOption("lime_api")
)
Arguments
ls_txt_path |
Path of the limesurvey text file |
open_url |
Character vector containing one or more of the strings in
|
hostname |
The host to use (if not using the one specified in
the options). If no hostname is specified in the |
Value
The value of the id of your survey in the specified LimeSurvey installation,
Examples
## Not run:
### Log into the LimeSurvey API:
limonaid::get_session_key();
### Upload a tab separated values file:
limer_upload_tsv_to_limesurvey(
"PATH/TO/YOUR/LIMESURVEY/TXT FILE",
c("preview", "survey")
);
## End(Not run)