Data imputation
data.imputation.Rd
Data imputation for features with missing values
Arguments
- Data
A matrix representing the genomic data such as gene expression data, miRNA expression data.
For the matrix, the rows represent the genomic features, and the columns represent the samples.- fun
A character value representing the imputation type. The optional values are shown below:
"median". The NAs will be replaced by the median of the existing values of this feature in all samples.
"mean". The NAs will be replaced by the mean of the existing values of this feature in all samples.
"knn". It will apply the "impute" package to impute the missing values. This is a common way to process the missing observation for MicroArray dataset(Default value).