{AAGISurvey} is available through the R-Universe with pre-built binaries that will install as if it was available from CRAN.
To get started:
Note that you only need to do this once. If you have done this before for another AAGI package, you can skip this step.
options(
repos = c(
AAGI = 'https://aagi-aus.r-universe.dev',
CRAN = 'https://cloud.r-project.org'
)
)install.packages("AAGISurvey")Currently, {AAGISurvey} only contains one function, create_survey_url(), which creates a URL that links to a Qualtrics survey for you to send to AAGI Service and Support partners for completion.
Creation of the URL can be either scripted where you provide all the necessary arguments to the create_survey_url() or interactively through a menu-driven options system.
The menu will step through the needed arguments and provide help text for each.
At the end of the menu (or if you have scripted it) you will be provided with the URL to copy and paste into an email or other communication that is automatically copied to your OS's clipboard for you.
library(AAGISurvey)
create_survey_url()All contributions are appreciated, but please make sure to follow the Contribution Guidelines.
-
Clone the repository to your local machine using:
git clone https://github.com/AAGI-AUS/AAGISurvey.git
-
Navigate to the project directory:
cd AAGISurvey -
Make some edits to the .R files in the R/ directory.
-
Test your changes by running:
devtools::load_all()
and testing your new functionality.
-
If you are adding new functions, make sure to document them using Roxygen2 comments and generate the documentation with:
devtools::document()
-
When you are satisfied with your changes, commit them to your local repository:
git add . git commit -m "Describe your changes here"
-
Push your changes to the repository:
git push