concat | R Documentation |
Combine multiple ftmsData objects into a single ftmsData object
for further analysis or visualizations. The inputs to this function are
the ftmsData objects created by divideByGroup
or
divideByGroupComparisons
. The output is a new ftmsData
with all the data of the supplied inputs, in a form that can be
summarized with summarizeGroups
or summarizeGroupComparisons
respectively.
concat(...)
... |
two or more ftmsData objects that are the output of |
Amanda White
data("exampleProcessedPeakData")
exampleProcessedPeakData <- group_designation(exampleProcessedPeakData, main_effects = "Location")
grp1 <- divideByGroup(exampleProcessedPeakData)
exampleProcessedPeakData <- group_designation(exampleProcessedPeakData, main_effects = "Crop.Flora")
grp2 <- divideByGroup(exampleProcessedPeakData)
allGrps <-concat(grp1, grp2)
grpSummaries <- summarizeGroups(allGrps, c("n_present", "prop_present"))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.