Re: [R] Problems with combining plots

2009-03-22 Thread Wills, Kellie
par(mfrow=c(1,1)) will give you just one panel. Try par(mfrow=c(2,1)) or par(mfrow=c(1,2)). -Original Message- From: r-help-boun...@r-project.org on behalf of johnhj Sent: Sun 3/22/2009 10:50 AM To: r-help@r-project.org Subject: [R] Problems with combining plots Hii, I will

Re: [R] getting all pairwise combinations of elements in a characterstring

2009-02-12 Thread Wills, Kellie
How about m - outer(mystring, mystring, paste, sep=) m[upper.tri(m)] Kellie Wills -Original Message- From: r-help-boun...@r-project.org on behalf of Levi Waldron Sent: Thu 2/12/2009 12:20 PM To: r-help@r-project.org Subject: [R] getting all pairwise combinations of elements in a