Description Usage Arguments Value Author(s) References Examples
View source: R/all_functions_v8.R
Retrieve a list of metrics computed for an aggregated result object. This getter function takes the output of aggregateFR() as input.
1 | getAvailableAggrMetrics(object)
|
object |
list of length 2, returned by the aggregateFR() function |
character vector listing all available metrics
Damiano Fantini and Salim Ghannoum salim.ghannoum@medisin.uio.no
https://www.data-pulse.com/dev_site/cellmigration/
1 2 3 4 5 6 7 8 9 10 11 12 13 | data(WSADataset)
wasDF1 <- WSADataset[seq(1,300,by=1), ]
wsaTD1 <- CellMig(wasDF1)
wsaTD1 <- wsaPreProcessing(wsaTD1,FrameN=65)
wsaTD1 <- FMI(wsaTD1,TimeInterval=10)
wsaTD1 <- FinRes(wsaTD1,ParCor=FALSE, export=FALSE)
wasDF2 <- WSADataset[seq(1001,1300,by=1), ]
wsaTD2 <- CellMig(wasDF2)
wsaTD2 <- wsaPreProcessing(wsaTD2,FrameN=65)
wsaTD2 <-FMI(wsaTD2,TimeInterval=10)
wsaTD2 <-FinRes(wsaTD2,ParCor=FALSE, export=FALSE)
AGG <- aggregateFR(wsaTD1 ,wsaTD2 ,export=FALSE)
getAvailableAggrMetrics(AGG)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.