qsmoothData: Generic function that returns the qsmooth normalized data

Description Usage Arguments Value Examples

Description

Given a qsmooth object, this function returns the qsmooth normalized data

Accessors for the 'qsmoothData' slot of a qsmooth object.

Usage

1
2
3
4
qsmoothData(object)

## S4 method for signature 'qsmooth'
qsmoothData(object)

Arguments

object

an object of class qsmooth.

Value

The normalized data after applying smoothed quantile normalization.

Examples

1
2
3
4
5
dat <- cbind(matrix(rnorm(1000), nrow=100, ncol=10), 
             matrix(rnorm(1000, .1, .7), nrow=100, ncol=10))
dat_qs <- qsmooth(object = dat, 
                  group_factor = rep(c(0,1), each=10))
qsmoothData(dat_qs)

qsmooth documentation built on Nov. 8, 2020, 5:26 p.m.