flat_expr | R Documentation |
Used primarily to support the parsing of covariance structure definitions from formulas, these functions flatten the syntax tree into a hierarchy-less grammar, allowing for parsing that doesn't abide by R's native operator precedence.
flatten_call(call)
flatten_expr(expr)
call , expr |
( |
Where 1 + 2 | 3
in R's syntax tree is (|, (+, 1, 2), 3)
,
flattening it into its visual order produces (1, +, 2, |, 3)
, which
makes for more fluent interpretation of non-standard grammar rules used in
formulas.
A list of atomic values, symbols, infix operator names and subexpressions.
flatten_call()
: Flatten a call into a list of names and argument expressions.
The call name and all arguments are flattened into the same list, meaning a
call of the form sp_exp(a, b, c | d / e)
produces a list of the form
(sp_exp, a, b, c, |, d, /, e)
.
flatten_call(quote(sp_exp(a, b, c | d / e)))
flatten_expr()
: Flatten nested expressions
flatten_expr(quote(1 + 2 + 3 | 4))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.