I merged three datasets, two from same platform and one from a different platform, after merging I performed normalization and try to visualize using boxplot. But I am not getting a proper boxplot. I used the following codes:
# normalization of merged file
#change to summarize experiment file
mergenorm<- normalize(sum, norm.method = "quantile", data.type = "ma")
#converted to matrix file for boxplot
JM3<- assay(mergenorm)
#boxplot for normalized data
boxplot(exprs(JM3))
boxplot: ![got a boxplot in this image][1]
can anyone suggest what went wrong? or I can use any other plot?
First off, normalizing between different microarray platforms is generally futile - the discrepancies between them are just too vast to compare between platforms.
Second, there is not enough information here for us to help you. I'm assuming this is RNA microarray data, but you should explicitly state that. What are you using to process these? We need a minimal, complete example of how you're dealing with this. What package is the
boxplot
function from? What is your end goal?