The hardware and bandwidth for this mirror is donated by dogado GmbH, the Webhosting and Full Service-Cloud Provider. Check out our Wordpress Tutorial.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]dogado.de.
Welcome to this GitHub repository which hosts ctsmTMB (Continuous Time Stochastic Modelling using Template Model Builder), the intended successor of, and heavily inspired by, the CTSM package (Continuous Time Stochastic Modelling). The purpose of the package is to facilitate a user-friendly tool for (state and parameter) inference, and forecasting, in (multi-dimensional) continuous-discrete stochastic state space systems, i.e. systems on the form
\[ dx_{t} = f(t, x_t, u_t, \theta) \, dt + g(t, x_t, u_t, \theta) \, dB_{t} \] \[ y_{t_k} = h(t_k, x_{t_k}, u_{t_k}, \theta) \]
Here the latent state \(x_t\) evolves continuously in time, governed by a set of stochastic differential equations, and information about the system is available at discrete times through the observations \(y_{t_k}\).
The ctsmTMB package is essentially wrapper around
the TMB/RTMB packages (Template Model Builder) that
provide automatic differentiation of the likelihood function, and access
to other computational tools such as the Laplace approximation. The
likelihood function is constructed based on the (symbolic) user-provided
state space equations, which may be specified using the implemented
OOP-style R6 ctsmTMB
class, with methods
such as addSystem
(for defining system equations), and
addObs
(for defining observation equations).
The primary work-horse of ctsmTMB is the
estimate
method, which carries out inference by minimizing
the (negative log) likelihood using the stats::nlminb
quasi-Newton optimizer. The resulting object contains the maximum
likelihood parameter and state estimates, and associated marginal
uncertainties. The available inference methods are the Linear and
Extended Kalman filters in addition to filtration (actually smoothing)
using a Laplace approximation approach.
The package facilities forecasting through the predict
(moment forecasts) and simulate
(stochastic path
simulations) methods. The calculations for these may be carried out in
either R (default) or for additional speed in
C++ using Rcpp
.
The following state reconstruction algorithms are currently available:
The (Continuous-Discrete) Linear Kalman Filter,
lkf
.
The (Continuous-Discrete) Extended Kalman Filter,
ekf
.
The (Continuous-Discrete) Laplace “Filter”
laplace
.
The package is currently mostly tailored towards the Kalman Filter. The advantages of the methods are:
The hessian of the likelihood function (w.r.t parameters) is available.
The model residuals are easier to compute for e.g. model validation.
Multi-step predictions / simulations with state updates are easier to compute.
In these cases TMB simply provides the automatic differentiation.
The state-reconstructions based on the laplace
(approximation) method are smoothed estimates, meaning that all
states are optimized jointly, given all observations in the data. The
Laplace Approximation is natively built-into and completely handled by
TMB. The package implements the stability-improved
method due to Thygesen,
2025.
A particular advantage of Laplace filter is:
The method is typically not useful for model-training with the goal of forecasting because the likelihood contributions are based on smoothed estimates, rather than the one-step predictions of Kalman filters.
You can install the package by copying the command below into
R
.
::install_github(repo="phillipbvetter/ctsmTMB", dependencies=TRUE) remotes
It is important to note that users must have working C++ compilers to install and use ctsmTMB.
C++ compilation in R requires Rtools:
Go to https://cran.r-project.org/bin/windows/Rtools/ and find the latest version.
Go to “Control Panel -> System ->”Advanced” (tab) -> “Environment Variables” -> Highlight “Path” -> “Edit” -> Add to the character string in “Variable Value” the path to your Rtools folder **C:;C:*.
Mac users should install Command Line Tools. Run the following command in the Terminal
xcode-select --install
Once you have installed the package is it a good idea to test whether TMB and C++ compilation works. You should be able to run all examples without compilation errors:
library(TMB)
runExample(all=TRUE)
For further information see the TMB GitHub and its associated installation instructions.
You can visit the package webpage and browse the vignettes for example uses, in particular see Getting Started.
You can access the documentation for all methods with
?ctsmTMB
The methods documentation is also available on the package homepage.
library(ggplot2)
library(patchwork)
library(dplyr)
library(reshape2)
library(ctsmTMB)
############################################################
# Data simulation
############################################################
# Simulate data using Euler Maruyama
set.seed(20)
= c(theta=10, mu=1, sigma_x=1, sigma_y=0.1)
pars #
= 1e-3
dt.sim = seq(0,5,by=dt.sim)
t.sim = rnorm(length(t.sim)-1,sd=sqrt(dt.sim))
dw = cumsum(rnorm(length(t.sim),sd=0.05))
u.sim = 3
x for(i in 1:(length(t.sim)-1)) {
+1] = x[i] + pars[1]*(pars[2]-x[i]+u.sim[i])*dt.sim + pars[3]*dw[i]
x[i
}
# Extract observations and add noise
= 1e-2
dt.obs = seq(1,length(t.sim),by=round(dt.obs / dt.sim))
ids = t.sim[ids]
t.obs = x[ids] + pars[4] * rnorm(length(t.obs))
y # forcing input
= u.sim[ids]
u
# Create data
= data.frame(
.data t = t.obs,
y = y,
u = u
)
############################################################
# Model creation and estimation
############################################################
# Create model object
= ctsmTMB$new()
model
# Add system equations
$addSystem(
model~ theta * (mu-x+u) * dt + sigma_x*dw
dx
)
# Add observation equations
$addObs(
model~ x
y
)
# Set observation equation variances
$setVariance(
model~ sigma_y^2
y
)
# Add vector input
$addInput(u)
model
# Specify parameter initial values and lower/upper bounds in estimation
$setParameter(
modeltheta = c(initial = 1, lower=1e-5, upper=50),
mu = c(initial=1.5, lower=0, upper=5),
sigma_x = c(initial=1, lower=1e-10, upper=30),
sigma_y = c(initial=1e-1, lower=1e-10, upper=30)
)
# Set initial state mean and covariance
$setInitialState(list(x[1], 1e-1*diag(1)))
model
# Carry out estimation with default settings (extended kalman filter)
<- model$estimate(data=.data, method="ekf")
fit
# Check parameter estimates against truth
= fit$par.fixed
p0 cbind(p0,pars)
# Create plot of one-step predictions, simulated states and observations
= fit$states$mean$prior$t
t.est = fit$states$mean$prior$x
x.mean = fit$states$sd$prior$x
x.sd = ggplot() +
plot1 geom_ribbon(aes(x=t.est, ymin=x.mean-2*x.sd, ymax=x.mean+2*x.sd),fill="grey", alpha=0.9) +
geom_line(aes(x=t.est, x.mean),col="steelblue",lwd=1) +
geom_line(aes(x=t.sim,y=x)) +
geom_point(aes(x=t.obs,y=y),col="tomato",size=0.5) +
labs(title="1-Step State Estimates vs Observations", x="Time", y="") +
theme_minimal()
# Predict to obtain k-step-ahead predictions to see model forecasting ability
= model$predict(data=.data,
pred.list k.ahead=10,
method="ekf",
)
# Create plot all 10-step predictions against data
= pred.list$states
pred = pred %>% dplyr::filter(k.ahead==10)
pred10step = ggplot() +
plot2 geom_ribbon(aes(x=pred10step$t.j,
ymin=pred10step$x-2*sqrt(pred10step$var.x),
ymax=pred10step$x+2*sqrt(pred10step$var.x)),fill="grey", alpha=0.9) +
geom_line(aes(x=pred10step$t.j,pred10step$x),color="steelblue",lwd=1) +
geom_point(aes(x=t.obs,y=y),color="tomato",size=0.5) +
labs(title="10 Step Predictions vs Observations", x="Time", y="") +
theme_minimal()
# Perform prediction ignoring all data
= model$predict(data=.data,method="ekf")
pred.list
# Perform simulation ignoring all data
= model$simulate(data=.data, method="ekf", n.sims=10)
sim.list
# Collapse simulation data for easy use with ggplot
= sim.list$states$x$i0 %>%
sim.df select(!c("i","j","t.i","k.ahead")) %>%
::melt(., id.var="t.j")
reshape2
# Plot all simulations and the prediction against observations
= ggplot() +
plot3 geom_line(data=sim.df, aes(x=t.j, y=value, group=variable),color="grey") +
geom_line(aes(x=pred.list$states$t.j,y=pred.list$states$x),color="steelblue") +
geom_point(aes(x=t.obs,y=y),color="tomato",size=0.5) +
labs(title="No Update Prediction and Simulations vs Observations", x="Time", y="") +
theme_minimal() + theme(legend.position = "none")
# Create plot
<- patchwork::wrap_plots(plot1, plot2, plot3, ncol=1)
p1
# Create one-step-ahead residual analysis plot
<- plot(fit)
p2
# Wrap both plots
::wrap_plots(p1,p2[[1]], ncol=2) patchwork
These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.
Health stats visible at Monitor.