Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 1.3 KB

README.md

File metadata and controls

25 lines (18 loc) · 1.3 KB

Pulsatile

Build Status codecov

An R package for analyzing time series of hormone concentrations using Bayesian deconvolution analysis. This package is package is fully functional for fitting individual time series data. It's primary purpose was for the development of the user interface in R for modeling this type of data and for implementing the R to C interface. The backend algorithm, written in C, is functional, but not modularized or optimized. That work is being done in the libpulsatile package.

Run the following code to install the development version:

# Need devtools package to install from GitHub
if (!require(devtools)) install.packages("devtools")

# install from github
install_github("bayespulse/pulsatile")

Programming resources

R source (math.h and internal.h) C interface in Advanced R R's RNG wrappers R's rmultinom