I used Yeast microarray dataset from SGD. Sample dataset are in this link. But the dataset contains huge number of missing values. I need to compute similarity between genes. If i removed all the gene rows which contains NA values in their sample's column, the number of genes decrease into half of the total number of genes.
How can I handling the large amount of missing value in the path of measuring the similarity between genes in R? What will be the standard approach for it?
1 answer
What kind of data are you dealing with ?
There are two main approaches for dealing with missing values: one is imputation, i.e. you replace the missing value by some estimate of what it should be, the other is data integration i.e. you combine your data set with some other data e.g. you could compensate for missing links in a protein interaction graph by combining it with a genetic interaction graph.
Which way you go depends on the type of data you have and on the question you're trying to address.
Log in to answer this question.