# Installation To install this package directly from git, you will first need the devtools package if not already installed: ``` install.packages("devtools") ``` Please ensure all r packages required are up to date when installing the uds package, during installation of the uds package you will be asked if you wish to update any of the required packages. The uds package itself can be installed using the following command: ``` devtools::install_git("https://gitlab.erc.monash.edu.au/aspree/uds-r-package.git") ``` You will then need to load the package. library("uds") The api url will need to be entered. This url can then be used as a part of the UDSConnection function. Here's an example using the UDS library to pull data from a Test Project ``` library(uds) url <- [paste url to api here] con <- UDSConnection(url, allow_insecure=TRUE) test <- UDSDataExport(con, "Test Project") ``` When the USDConnection function is run you will be asked for authentication details to verify you have access to the api.