odin_parse | R Documentation |
Parse an odin model, returning an intermediate representation.
The odin_parse_
version is a "standard evaluation" escape
hatch.
odin_parse(x, type = NULL, options = NULL)
odin_parse_(x, options = NULL, type = NULL)
x |
An expression, character vector or filename with the odin code |
type |
An optional string indicating the the type of input -
must be one of |
options |
odin options; see odin_options. The
primary options that affect the parse stage are |
A schema for the intermediate representation is available in the
package as schema.json
. It is subject to change at this
point.
odin_validate, which wraps this function where parsing might fail, and odin_build for building odin models from an intermediate representation.
# Parse a model of exponential decay
ir <- odin::odin_parse({
deriv(y) <- -0.5 * y
initial(y) <- 1
})
# This is odin's intermediate representation of the model
ir
# If parsing odin models programmatically, it is better to use
# odin_parse_; construct the model as a string, from a file, or as a
# quoted expression:
code <- quote({
deriv(y) <- -0.5 * y
initial(y) <- 1
})
odin::odin_parse_(code)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.