![]() |
EpiNow2 Stan Functions
|
Functions for smoothing estimates using Gaussian processes. More...
Functions | |
vector | diagSPD_EQ (real alpha, real rho, real L, int M) |
vector | diagSPD_Matern12 (real alpha, real rho, real L, int M) |
vector | diagSPD_Matern32 (real alpha, real rho, real L, int M) |
vector | diagSPD_Matern52 (real alpha, real rho, real L, int M) |
vector | diagSPD_Periodic (real alpha, real rho, int M) |
void | gaussian_process_lp (vector eta) |
matrix | PHI (int N, int M, real L, vector x) |
matrix | PHI_periodic (int N, int M, real w0, vector x) |
matrix | setup_gp (int M, real L, int dimension, int is_periodic, real w0) |
int | setup_noise (int ot_h, int t, int horizon, int estimate_r, int stationary, int future_fixed, int fixed_from) |
Functions for smoothing estimates using Gaussian processes.
Functions from gaussian_process.stan for implementing approximate Gaussian processes using Hilbert space methods to smooth infection and Rt trajectories.
vector diagSPD_EQ | ( | real | alpha, |
real | rho, | ||
real | L, | ||
int | M ) |
#include </github/workspace/inst/stan/functions/gaussian_process.stan>
These functions implement approximate Gaussian processes for Stan using Hilbert space methods. The functions are based on the following:
alpha | Scaling parameter |
rho | Length scale parameter |
L | Length of the interval |
M | Number of basis functions |
Definition at line 19 of file gaussian_process.stan.
Referenced by update_gp().
vector diagSPD_Matern12 | ( | real | alpha, |
real | rho, | ||
real | L, | ||
int | M ) |
#include </github/workspace/inst/stan/functions/gaussian_process.stan>
Spectral density for 1/2 Matern (Ornstein-Uhlenbeck) kernel
alpha | Scaling parameter |
rho | Length scale parameter |
L | Length of the interval |
M | Number of basis functions |
Definition at line 37 of file gaussian_process.stan.
Referenced by update_gp().
vector diagSPD_Matern32 | ( | real | alpha, |
real | rho, | ||
real | L, | ||
int | M ) |
#include </github/workspace/inst/stan/functions/gaussian_process.stan>
Spectral density for 3/2 Matern kernel
alpha | Scaling parameter |
rho | Length scale parameter |
L | Length of the interval |
M | Number of basis functions |
Definition at line 55 of file gaussian_process.stan.
Referenced by update_gp().
vector diagSPD_Matern52 | ( | real | alpha, |
real | rho, | ||
real | L, | ||
int | M ) |
#include </github/workspace/inst/stan/functions/gaussian_process.stan>
Spectral density for 5/2 Matern kernel
alpha | Scaling parameter |
rho | Length scale parameter |
L | Length of the interval |
M | Number of basis functions |
Definition at line 73 of file gaussian_process.stan.
Referenced by update_gp().
vector diagSPD_Periodic | ( | real | alpha, |
real | rho, | ||
int | M ) |
#include </github/workspace/inst/stan/functions/gaussian_process.stan>
Spectral density for periodic kernel
alpha | Scaling parameter |
rho | Length scale parameter |
M | Number of basis functions |
Definition at line 91 of file gaussian_process.stan.
Referenced by update_gp().
void gaussian_process_lp | ( | vector | eta | ) |
#include </github/workspace/inst/stan/functions/gaussian_process.stan>
Priors for Gaussian process (excluding length scale)
eta | Vector of noise terms |
Definition at line 226 of file gaussian_process.stan.
matrix PHI | ( | int | N, |
int | M, | ||
real | L, | ||
vector | x ) |
#include </github/workspace/inst/stan/functions/gaussian_process.stan>
Basis functions for Gaussian Process
N | Number of data points |
M | Number of basis functions |
L | Length of the interval |
x | Vector of input data |
Definition at line 112 of file gaussian_process.stan.
Referenced by setup_gp(), and update_gp().
matrix PHI_periodic | ( | int | N, |
int | M, | ||
real | w0, | ||
vector | x ) |
#include </github/workspace/inst/stan/functions/gaussian_process.stan>
Basis functions for periodic Gaussian Process
N | Number of data points |
M | Number of basis functions |
w0 | Fundamental frequency |
x | Vector of input data |
Definition at line 132 of file gaussian_process.stan.
Referenced by setup_gp().
matrix setup_gp | ( | int | M, |
real | L, | ||
int | dimension, | ||
int | is_periodic, | ||
real | w0 ) |
#include </github/workspace/inst/stan/functions/gaussian_process.stan>
Setup approximate Gaussian process
M | Number of basis functions |
L | Length of the interval |
dimension | Dimension of the process |
is_periodic | Indicator if the process is periodic |
w0 | Fundamental frequency for periodic process |
Definition at line 173 of file gaussian_process.stan.
References PHI(), and PHI_periodic().
int setup_noise | ( | int | ot_h, |
int | t, | ||
int | horizon, | ||
int | estimate_r, | ||
int | stationary, | ||
int | future_fixed, | ||
int | fixed_from ) |
#include </github/workspace/inst/stan/functions/gaussian_process.stan>
Setup Gaussian process noise dimensions
ot_h | Observation time horizon |
t | Total time points |
horizon | Forecast horizon |
estimate_r | Indicator if estimating r |
stationary | Indicator if stationary |
future_fixed | Indicator if future is fixed |
fixed_from | Fixed point from |
Definition at line 153 of file gaussian_process.stan.