README.md

responsematch

The goal of responsematch is to streamline the creation of surveys with downloadable reports for 'responsematch' clients.

Installation

You can install this package from GitHub as follows:

if (!require("remotes")) install.packages("remotes")
remotes::install_github("jdtrat/responsematch")

Details

responsematch has one main function, create_survey(), which is used to create a survey using shinysurveys with the code necessary to save respondent data to Google Drive/Google Sheets.

The documentation for this function can be accessed within the console by typing ?create_survey(). As an overview, this function creates a new RStudio Project, containing a folder with all the required files for deploying a shinysurvey customized for responsematch clients.

create_survey() takes in two arguments:

When called, this function will (if save_to_sheets = TRUE) open an internet browser window and asks you to authenticate yout Google Drive and Google Sheets information. This is necessary to remotely store respondent data. Be sure to allow for seeing, creating, and editing all Google Drive and Google Sheets content.

After Google Drive and Google Sheets authentication, a new RStudio Project will be created at the specified path, with a suffix 'survey-project'. This project will open automatically and will contain a folder that contains an 'app.R' file -- defining the user-interface and server-side logic of the survey -- a 'www' folder -- housing the survey questions, RMarkdown report, and custom JavaScript -- and an 'R' directory containing additional functions used by the application.

Before running the application, be sure to modify the survey questions 'www/questions.csv' and parameterized RMarkdown file 'www/report.Rmd'. You may also want to change the report's style file, 'www/report.scss'. You should now be able to test the survey, see the report generate live, and publish it to shinyapps.io.

For more details on deploying a shiny application, please see my blog post on getting started with shinyapps.io.

Once published, anyone can complete the survey, view their results in-browser, and (optionally) download a PDF and HTML generated with the 'www/report.Rmd' file. Each respondent's data is stored in a Google Sheet within a Google Drive folder.

For example, the "GLI" survey data would be stored within the Google Sheet "GLI_data" within the Google Drive folder "GLI_survey". The data can be read back in with the R packages googledrive and googlesheets4.



jdtrat/responsematch documentation built on Sept. 15, 2022, 6:19 a.m.