create_tree | R Documentation |
function will break text
into a list of lists.
create_tree( text, singular_operators = NULL, binary_operators = NULL, valid_functions = NULL )
text |
the string/code/statement you want to parse. |
singular_operators |
tokens of length 1 that operate on a right hand value. For example, the '-' token is an operator to negate a vector. |
binary_operators |
tokens of any length that operate on a left and right hand values. For example, the '+' token is an operator that adds a left vector to a right vector. |
valid_functions |
tokens of any length that are prefixed on a parenthesis block and specify a function to run on the provided parameters within the block. For example, the 'log' token will evaluate the logarithm value of the first parameter. Note named parameters are not support. |
See vignette("Overview", package = "evalR")
a list of lists. In other words, a tree data structure made from lists.
x <- create_tree("2 * (3 + 5)") str(x)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.