Center matrix rows by subsets of columns
grouped_rowcenter(m, groups = split_by_sample_names(colnames(m)), by = "mean")
a matrix
list of character vectors specifying the column ids to center by. Default: split_by_sample_names(colnames(m))
how centering should be performed. One of 'mean' or 'median'. Default: 'mean'
A row-centered matrix, centered within groups and with the order of cells within groups retained. The matrix has the same number of rows as <m> and as many columns as there are cell ids in groups.