I'd like to obtain a graphic representation of the correlations in articles I have gathered so far to easily explore the relationships between variables. I used to draw a (messy) graph but I have too much data now.
Basically, I have a table with:
- [0]: name of variable 1
- [1]: name of variable 2
- [2]: correlation value
The "overall" matrix is incomplete (e.g., I have the correlation of V1*V2, V2*V3, but not V1*V3).
Is there a way to graphically represent this ?


ggfluctuation, hadn't seen that before! This post has other useful code to visualize this type of dater: http://stackoverflow.com/questions/5453336/r-plot-correlation-matrix-into-a-graph/5453398#5453398 – Chase Apr 01 '11 at 16:42hclust(…)$order)[http://stat.ethz.ch/R-manual/R-devel/library/stats/html/hclust.html] the visualization will be often easier to overview. – GaBorgulya Apr 01 '11 at 17:23mixOmics::cimfunction is very good for that. A related issue was discussed here, http://stats.stackexchange.com/questions/8370/how-to-visualize-summarize-a-matrix-with-number-of-rows-gg-number-of-columns/8372#8372. – chl Apr 01 '11 at 19:29