Entering edit mode
9.6 years ago
rvsaras86
•
0
I am using the corrplot package to create a graph for different sets of matrices. Is there anyway to merge all the graphs together into one using R?
Don't know what you mean by "merge graphs into one", but you can use multiplot function or gridExtra package (more on SO).
Thanks. By merge, I mean plot the different sets of correlation matrices I have on the same graph with a color code identifying the different sets.
So you want to use color for correlation, but use different pallets for different sets in the same graph? I doubt that this is possible in corrplot.
yes. Is there any other way of doing this,without using corrplot?
You can use ggplot to plot correlation matrix, but still have to use multiplot or gridExtra to merge multiple graphs.