ClaraMarquardt / ehR

A collection of R functions designed to facilitate the interaction with and analysis of EHR data
MIT License
2 stars 7 forks source link
ehr medicine messy-data

ehR


NOTE: THIS VERSION OF THE REPOSITORY IS NO LONGER ACTIVELY MAINTAINED

Please see https://github.com/sysmedlab/ehR


Install

library("devtools")  
install_github("claramarquardt/ehR",dependencies = TRUE)    
library(ehR)

Documentation

Datasets & Crosswalks
The package contains the following data sets and crosswalks:

Notes

# install the necessary packages
install.packages("extrafontdb",repos="http://cran.cnr.berkeley.edu/", 
   dependencies=TRUE)
install.packages("extrafont",repos="http://cran.cnr.berkeley.edu/", 
   dependencies=TRUE)

# load the necessary packages
library(extrafont)
library(extrafontdb)

# register the fonts (this step only needs to be execute once)
font_import()
loadfonts()

# Note: There may still be problems when using the themes on a plot saved in a non-PDF format

Development

2. Make/Save any changes

2. Create a new branch

git checkout -b [branch name]

3. Push all changes to the branch (assuming all changes have been committed)

git push origin [branch name]

4. Test by installing from the branch

library(devtools) install_git("git://github.com/ClaraMarquardt/ehR.git", branch = "[branch name])


- Package Management Tools

See 'package_management/' for