remove_lines | R Documentation |
Removes one or more lines in a libbi model.
## S3 method for class 'bi_model'
remove_lines(
x,
what,
only,
type = c("all", "assignment", "sample"),
preserve_shell = FALSE,
...
)
x |
a |
what |
either a vector of line number(s) to remove, or a vector of blocks to remove (e.g., "parameter") |
only |
only remove lines assigning given names (as a vector of character strings) |
type |
which types of lines to remove, either "all", "sample" (i.e., lines with a "~") or "assignment" (lines with a "<-" or "=") (default: "all") |
preserve_shell |
if TRUE (default: FALSE), preserve the definition of a
block even if all lines are removed; this is useful to preserve options
passed to a |
... |
ignored |
the updated bi_model
object
bi_model
model_file_name <- system.file(package = "rbi", "PZ.bi")
PZ <- bi_model(filename = model_file_name)
PZ <- remove_lines(PZ, 2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.