Skip to content
Prev 262028 / 398503 Next

Plot many x and y

Hi Alex,

You have not given enough details for us to answer your question.  Is
this something like what you mean?

par(mfcol = c(2, 2))
plot(1:10, 1:10, pch = 16)
legend(x = 2, y = 8, legend = "Test 1", pch = 16)
plot(1:10, 1:10, pch = 15)
legend(x = 2, y = 8, legend = "Test 2", pch = 15)
plot(1:10, 1:10, pch = 14)
legend(x = 2, y = 8, legend = "Test 3", pch = 14)
plot(1:10, 1:10, pch = 13)
legend(x = 2, y = 8, legend = "Test 4", pch = 13)

The posting guide (  http://www.R-project.org/posting-guide.html )
provides some helpful tips on how to write a question that will get a
good answer.

Cheers,

Josh
On Mon, Jun 6, 2011 at 12:46 PM, Alaios <alaios at yahoo.com> wrote: