Combines a drift equation and diffusion model into a complete SDE: dZ = f(Z, X, Y) dt + g(Z, X, Y) dW
construct_sde(
drift,
diffusion = NULL,
variable = NULL,
refine_with_gls = FALSE,
gls_max_iter = 10,
gls_tolerance = 1e-04,
data = NULL,
target = NULL
)An object of class "sde_model"
Symbolic equation for the drift term f(.)
Variance model for the diffusion term g(.)
Name of the main state variable
Use iterative GLS to refine estimates?
Maximum iterations for GLS
Convergence tolerance for GLS
Data frame (required if refine_with_gls = TRUE)
Target variable name (required if refine_with_gls = TRUE)