post_remove | R Documentation |
Just like post_subset()
, but keep all nodes except those that match.
post_remove(post, params, ask = TRUE, auto_escape = TRUE)
post |
A |
params |
A vector of regular expressions specifying the nodes to match for removal.
Accepts multi-element vectors to match more than one node at a time.
See |
ask |
Prompt user for a response prior to removing nodes? |
auto_escape |
Automatically escape |
A mcmc.list
, identical in all ways to the original
except that nodes matched by the params
argument are removed. If the user
responds "no" to the question when ask = TRUE
, post
is returned unaltered.
# load example mcmc.list data(cjs) # get names of all nodes get_params(cjs) # remove the SIG nodes new_cjs = suppressMessages(post_remove(cjs, "SIG", ask = FALSE)) # get names of new output get_params(new_cjs)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.