
Open the questionnaire PDF of a CIS study
browse_pdf.RdOpens a PDF document from a CIS study in the default browser.
Details
CIS study ZIP files typically contain two PDF documents:
The questionnaire (cuestionario): use
wanted_file = "cues".The technical sheet (ficha técnica): use
wanted_file = "ft".
Examples
if (interactive()) {
# Open the questionnaire (cuestionario) for study 3328
browse_pdf("3328")
# Open the technical sheet (ficha técnica) for study 3328
browse_pdf("3328", wanted_file = "ft")
}