linpk

Travis-CI Build Status CRAN_Release_Badge CRAN_Download_Badge

An R package for generating concentration-time profiles from linear pharmacokinetic (PK) systems.

Installation

To install from CRAN:

install.packages("linpk")

To install the latest development version directly from GitHub:

require(devtools)
devtools::install_github("benjaminrich/linpk")

For an introduction to the package, with usage examples, see the vignette.

There is a shiny app that provides a demo of the package capabilities, and also generates code that can be placed in an R script. To run it, paste the following lines in an R console:

# Make sure the required packages are installed
require(shiny)
require(shinyjs)
require(shinyAce)
require(dygraphs)
require(linpk)  # See above for installation
shiny::runGitHub("linpk", "benjaminrich", subdir="inst/demo-app")