[R] Separate Array Variable Content

2012-06-03 Thread arun
0 FALSE FALSE FALSE 5  70  80  90 FALSE FALSE FALSE 6  61  15  24  TRUE  TRUE  TRUE # which is the same as the one below. A.K. - Original Message ----- From: arun To: "Akkara, Antony (GE Energy, Non-GE)" Cc: R help Sent: Friday, June 1, 2012

Re: [R] Separate Array Variable Content

2012-06-01 Thread David Winsemius
son to try to guess what class these items might be after reconstruction from the mail-client-mangled output you offered. -- David. - Thanks Antony. From: ila...@gmail.com [mailto:ila...@gmail.com] On Behalf Of ilai Sent: Wednesday, May 30, 2012 10:35 PM To: Akkara, Antony (GE Energy, Non-GE)

Re: [R] Separate Array Variable Content

2012-06-01 Thread ilai
70 80 90 > F F T > > ** ** > > ** ** > > Can I get an immediate reply ? > > ** ** > > - Thanks > > Antony. > > ** ** > > ** ** > &g

Re: [R] Separate Array Variable Content

2012-06-01 Thread Akkara, Antony (GE Energy, Non-GE)
From: ila...@gmail.com [mailto:ila...@gmail.com] On Behalf Of ilai Sent: Wednesday, May 30, 2012 10:35 PM To: Akkara, Antony (GE Energy, Non-GE) Cc: r-help@r-project.org Subject: Re: [R] Separate Array Variable Content If you haven't done so you *must* read an Introduction to R. The on

Re: [R] Separate Array Variable Content

2012-05-30 Thread David Winsemius
On May 30, 2012, at 1:04 PM, ilai wrote: If you haven't done so you *must* read an Introduction to R. The only reason this is a problem is Myarray is a character string, not a function or expression to be evaluated. I think this will get you what you want though: # In the future use the out

Re: [R] Separate Array Variable Content

2012-05-30 Thread arun
50  60   3  70  80  90 TRUE TRUE A.K. - Original Message - From: Rantony To: r-help@r-project.org Cc: Sent: Wednesday, May 30, 2012 2:44 AM Subject: [R] Separate Array Variable Content Hi, I am new in R,

Re: [R] Separate Array Variable Content

2012-05-30 Thread ilai
If you haven't done so you *must* read an Introduction to R. The only reason this is a problem is Myarray is a character string, not a function or expression to be evaluated. I think this will get you what you want though: # In the future use the output of ?dput to provide data to this list (MyMa

[R] Separate Array Variable Content

2012-05-30 Thread Rantony
Hi, I am new in R, i have a matrix like this MyMatrix <- *ABC PQRXYZ* 10 2030 40 5060 70 8090 And, i have an array containing some conditions like this, MyArray <- c("*ABC*>50","*PQR*<50","*ABC*<30 &* XYZ*<40") "ABC>50" "PQR<50" "ABC<30 & XYZ<4