Introduction | Installation | Contributing
dfeR is an R package designed to help standardise R programming across the Department for Education (DfE) and facilitate sharing of business specific functions.
Scope
dfeR is open to all of DfE and anything we think could be useful to other programmers / analysts can be contributed.
Functionality is likely to focus around the following:
Documentation for what has been included in the package so far is available at http://dfe-analytical-services.github.io/dfeR/
dfeR is not currently available on CRAN. You can instead install the development version from GitHub with:
# install.packages("devtools")
devtools::install_github("dfe-analytical-services/dfeR")
To install dfeR and more generally access web resources within the Departmental network programatically, you need to set http and https proxy variables.
The following function set such variables for you to enable this functionality on your machine.
Notes
Sys.setenv(no_proxy = "*")
.install.packages("rstudioapi")
and re-run setup_proxy()
.
source("https://raw.githubusercontent.com/dfe-analytical-services/dfeR/master/R/proxy.R")
setup_proxy()
Ideas for dfeR should first be raised as a github issue after which anyone is free to write the code and create a pull request for review.
When contributing to dfeR you should work on a new branch and, where applicable, you will be asked to:
Your pull request should then be reviewed and approved by at least one other person before it can be merged.
Once your changes have been merged they should appear almost immediately, though users will need to reinstall the package locally to see them.