getAvailableAggrMetrics {cellmigRation} | R Documentation |
Retrieve a list of metrics computed for an aggregated result object. This getter function takes the output of aggregateFR() as input.
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/
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)