Re: [R] Pairwise Partitioning of a Vector

2008-06-22 Thread Moshe Olshansky
From: Gundala Viswanath <[EMAIL PROTECTED]> > Subject: [R] Pairwise Partitioning of a Vector > To: [EMAIL PROTECTED] > Received: Monday, 23 June, 2008, 4:13 PM > Hi, > > How can I partitioned an example vector like this > > > print(myvector) > [1] 30.9 60.1

Re: [R] Pairwise Partitioning of a Vector

2008-06-22 Thread Peter Dalgaard
Gundala Viswanath wrote: Hi, How can I partitioned an example vector like this print(myvector) [1] 30.9 60.1 70.0 73.0 75.0 83.9 93.1 97.6 98.8 113.9 into the following pairwise partition: PAIR1 part1 = 30.9 part2 = 60.1 70.0 73.0 75.0 83.9 93.1 97.

[R] Pairwise Partitioning of a Vector

2008-06-22 Thread Gundala Viswanath
Hi, How can I partitioned an example vector like this > print(myvector) [1] 30.9 60.1 70.0 73.0 75.0 83.9 93.1 97.6 98.8 113.9 into the following pairwise partition: PAIR1 part1 = 30.9 part2 = 60.1 70.0 73.0 75.0 83.9 93.1 97.6 98.8 113.9 PAIR2 part1 = 30.9