Description Usage Arguments Details Value Author(s) Examples
View source: R/normalization.R
Returns glycans normalized with Median Normalization approach.
1  | mediannorm(d, grouping = FALSE)
 | 
d | 
 data frame in long format containing glycan measurements  | 
grouping | 
 should data be normalized per groups  | 
Input data frame should have at least the following three columns: 
- gid - representing a unique name of a sample 
- glycan - representing glycan names 
- value - representing measured values 
and if the grouping argument is TRUE it should also have column: 
- groups - representing groupings (e.g. IgG1, IgG2 and IgG4)
Returns a data.frame with original glycan values substituted by normalized ones
Ivo Ugrina, Lucija Klarić
1 2 3  | data(mpiu)
mpiun <- mediannorm(mpiu)
head(mpiun)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.