row_counts | R Documentation |
This is an example of building up a desired pre-prepared pipeline fragment from relop nodes.
row_counts(source, ..., groupby = character(0), env = parent.frame())
source |
relop tree or data.frame source. |
... |
force later arguments to bind by name. |
groupby |
partitioning (window function) column names. |
env |
environment to look for values in. |
# by hand logistic regression example
d <- mk_td("survey_table",
c("subjectID", "surveyCategory", "assessmentTotal"))
optree <- d %.>%
row_counts(., groupby = "subjectID")
cat(format(optree))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.