I am dealing with cancer data, VEER in R. This dataset contains 24481 genes and 78 patients. I need to apply a series of data science operation on this dataset in R. Matrix containing gene expressions can be obtained with exprs(dataset)
.
I loaded the library, first. I need to find out if the overall expression levels of patients similar to each other with respect to standard deviation and the median of expression together with plottings.
a<-exprs(VEER)
medianV <- apply(a, 1, median)
meanV <- apply(a, 1, mean)
head(medianV)
head(meanV)
plot(meanV,medianV)
I obtained the following graph. How can I interpret this graph with respect to the question if the overall expression levels of patients similar to each other with respect to standard deviation and the median of expression? Or how can I find this?