Hi,
Imagine that my data is a set of genes with their expression values for a disease. However, my disease can be further subcategorized to 3-4 subgroups based on its severity/progression.
[or if you are more comfortable, you can imagine the data is from several different GWAS and you are looking for the top 1000 SNPs and looking for the recurrence and magnitude of the effects]
I want to plot this data in some fashion where the idea of the graph(plot) is to show that there is(or isnt) an overlap of genes between the different subgroups.I also want to show the magnitude of the difference in genexp when an overlap occurs.
Please advise, what kind of plot(s) will be most suited.
I looked at http://addictedtor.free.fr/graphiques/ and have not found so far, something that can deal with multiple arrays in a distinct fashion. If the data needs to be re-distilled, what should be done.
Thanks
Thank you, that may work. Is there a specific package that will accomplish this.
What Michael suggested is generally called a heatmap or image plot. You have some default functions i R (image or heatmap) but people generally use the heatmap.2 functions from the gplots package. Heatmaps are a very classical and efficient way to plot 3 dimensional data. The clustering (that can be done directly though the heatmap.2 functions with the Rowv and Colv arguments) can add some information to cluster together subtypes with similar pattern of gene expression.
You're right, I didn't put the actual plot name in there. Fixed.