Build Status CRAN_Status_Badge

tumgr

tumgr is a tool to obtain tumor growth rates from clinical trial patient data. Output includes individual and summary data for tumor growth rate estimates as well as optional plots of the observed and predicted tumor quantity over time. Tumor growth rates can be used to compare treatment efficacy and help predict overall survival in clinical trial datasets.

Shiny app

View the app here

Installation

To install the CRAN version:

install.packages("tumgr")  

To install the latest developmental version on GitHub:

install.packages("devtools")
devtools::install_github("wilkersj/tumgr")

Usage

# load library
library(tumgr)

# example data  
data(sampleData)
# generate some sample plots
par(mfrow=c(2, 3))
out <- gdrate(sampleData[18:67, ], 0.10, TRUE)
par(mfrow=c(1, 1))

Fig 1

# generate results with plots set to off
out <- gdrate(sampleData, 0.10, FALSE)

# summary of cases
out$models

# descriptive statistics
out$sumstats


wilkersj/tumgr documentation built on May 4, 2019, 5:25 a.m.