Description Usage Arguments Examples
Vectorized existence checkers for public Rmonad fields
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
m |
An Rmonad object |
... |
Additional arguments passed to |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | data(gff)
m <- gff$good_result
has_code(m)
has_dependents(m)
has_doc(m)
has_error(m)
has_mem(m)
has_meta(m)
has_nest(m)
has_notes(m)
has_parents(m)
has_prior(m)
has_summary(m)
has_time(m)
has_value(m)
has_warnings(m)
# find root nodes
which(!has_parents(m))
# find terminal (output) nodes
which(!has_dependents(m))
# count number of independent chains
sum(has_prior(m)) + 1
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.