I apologize for the confusion but that solution will work with a twist.
I want to record only the first value of a state change that goes above 2.
so if the sequence is
344455544334 it should read all 3s
but 3442555414433 should read 33321
Hope that helps clarify, if not I can get ther
ect.org] On
Behalf Of jim holtman
Sent: Wednesday, 1 June 2011 11:20 AM
To: Justin Haynes
Cc: r-help@r-project.org
Subject: Re: [R] count value changes in a column
Why isn't the sequence:
1 3 3 3 3 3 2 4 2 1 5 3 3 3
according to your rule about 5s following 3s.
On Tue, May 31, 2011 at 6:
Why isn't the sequence:
1 3 3 3 3 3 2 4 2 1 5 3 3 3
according to your rule about 5s following 3s.
On Tue, May 31, 2011 at 6:23 PM, Justin Haynes wrote:
> is there a way to look for value changes in a column?
>
> set.seed(144)
> df<-data.frame(state=sample(rep(1:5,200),1000))
>
> any of the five
Justin Haynes gmail.com> writes:
>
> is there a way to look for value changes in a column?
>
> df<-data.frame(state=sample(rep(1:5,200),1000))
>
> any of the five states are acceptable. however if, for example,
> states 4 or 5 follow state 3, i want to overwrite them with 3.
> changes from 1
is there a way to look for value changes in a column?
set.seed(144)
df<-data.frame(state=sample(rep(1:5,200),1000))
any of the five states are acceptable. however if, for example,
states 4 or 5 follow state 3, i want to overwrite them with 3.
changes from 1 to any value and 2 to any value are ac
Try this:
sum(!is.na(dia))
On Thu, Sep 11, 2008 at 9:11 AM, Alfredo Alessandrini
<[EMAIL PROTECTED]>wrote:
> Hi,
>
> I've this data.frame:
>
> > dia
> X1006109F X1006110F X1006111F X1006112F X1006113F X1006114F X1006115F
> 1NANANANANA45NA
On 9/11/2008 8:11 AM, Alfredo Alessandrini wrote:
> Hi,
>
> I've this data.frame:
>
>> dia
> X1006109F X1006110F X1006111F X1006112F X1006113F X1006114F X1006115F
> 1NANANANANA45NA
> X1006116F X1006117F X1006118F X1006119F X1006120F X100
Hi,
I've this data.frame:
> dia
X1006109F X1006110F X1006111F X1006112F X1006113F X1006114F X1006115F
1NANANANANA45NA
X1006116F X1006117F X1006118F X1006119F X1006120F X1006122F X1006123F
145NANANA
8 matches
Mail list logo