Description Usage Arguments Value Examples
We assume the sequence of expressions is in a valid order (all items available before use). This function partitions the expressions into ordered longest "no new value used blocks" by greedily scanning forward remaining expressions in order taking any that: have all their values available from earlier groups, do not use a value formed in the current group, and do not overwrite a value formed in the current group. For an example please see https://winvector.github.io/FluidData/partition_mutate.html.
1 | partition_mutate_se(exprs)
|
exprs |
list of source-text of a sequence of mutate expressions. |
ordered list of mutate_se assignment blocks
1 | partition_mutate_se(c("a1" := "1", "b1" := "a1", "a2" := "2", "b2" := "a1 + a2"))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.