Summary,GenoGAMDataSetList-method {GenoGAM} | R Documentation |
Computing metrics on each tile of the GenoGAMDataSetList object. All metrics from the Summary generics group, as well as mean, var, sd, median, mad and IQR are supported.
## S4 method for signature 'GenoGAMDataSetList' Summary(x, ..., na.rm = FALSE)
x |
A GenoGAMDataSetList object |
... |
Additional arguments |
na.rm |
Should NAs be dropped. Otherwise the result is NA |
A matrix with the specified metric computed per tile per column of the assay data.
Georg Stricker georg.stricker@in.tum.de
ggd <- makeTestGenoGAMDataSetList() sum(ggd) min(ggd) max(ggd) mean(ggd) var(ggd) sd(ggd) median(ggd) mad(ggd) IQR(ggd)