I want to plot, in the same graph, two different sets of points: A = [1 2; 3 4]
and B = [1 3; 2 4]
. I need to store the plot, so my idea is to use myPlot <- qplot
followed by ggsave
.
With such an approach, how can I plot multiple datasets without getting the error formal argument "data" matched by multiple actual arguments
?
Here is the code I am using now:
yPlot <- qplot(A[,1], A[,2], data = A[1:2], geom="point",
B[,1], B[,2], data = B[1:2], geom="point") + xlim(0, 10)
ggsave(filename="Plot.jpg", plot=myPlot, width = 12, height = 8)
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…