Skip to content

RxODE is an R package that facilitates easy simulations in R

License

Notifications You must be signed in to change notification settings

chedgala/RxODE

 
 

Repository files navigation

RxODE

Build Status AppVeyor Build status codecov.io CRAN version CRAN total downloads CRAN total downloads

Overview

RxODE is an R package for solving and simulating from ode-based models. These models are convert the RxODE mini-language to C and create a compiled dll for fast solving. ODE solving using RxODE has a few key parts:

Installation

You can install the released version of RxODE from CRAN with:

install.packages("RxODE")

To run RxODE, you need a working c compiler. To use parallel threaded solving in RxODE, this c compiler needs to support open-mp.

You can check to see if R has working c-compile you can check with:

pkgbuild::has_build_tools(debug = TRUE)

If you do not have the toolchain, you can set it up as described by the platform information below:

Windows

In windows you may simply use installr to install rtools:

install.packages("installr")
library(installr)
install.rtools()

Mac OSX

Installation on a mac is much similar to RxODE installation under windows. To enable open mp on R and RxODE, you will need to install the gfortran and clang compilers located at https://cran.r-project.org/bin/macosx/tools/

Linux

To install on linux make sure you install gcc (with openmp support) and gfortran using your distribution's package manager.

Development Version

Since the development version of RxODE uses StanHeaders, you will need to make sure your compiler is setup to support C++14, as described in the rstan setup page

Once the C++ toolchain is setup appropriately, you can install the development version from GitHub with:

# install.packages("devtools")
devtools::install_github("nlmixrdevelopment/RxODE")

About

RxODE is an R package that facilitates easy simulations in R

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Languages

  • R 43.0%
  • C 35.9%
  • C++ 15.4%
  • Fortran 5.4%
  • GAP 0.2%
  • M4 0.1%