gatherTables | R Documentation |
gatherTables
gathers the result of performing a
certain operation over the tables of an object of class
Dasst
.
gatherTables(object, coCol, opCol, operation, ...)
object |
Object of class
|
coCol |
A character vector. The field names of those columns that will be copied identically into the result. |
opCol |
A character vector. The field names of those columns that will be gather by means of applying the required operation. |
operation |
A function. The function name for the
required operation. i.e. |
... |
Other parameters for the |
This function gathers the result of performing a certain
operation over the tables of an object of class
Dasst
. The result is given as a
data.frame
.
A data.frame
with the values gathered after
the application of the operator to the required columns.
data(plantGrowth) plantgro12 <- gatherTables(plantGrowth[1:10], c("DAP"), c("SWAD","LWAD","GWAD"), mean)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.