[R] replacing Na's in a vector with the preceding integer element

Gabor Grothendieck ggrothendieck at gmail.com
Thu Nov 13 18:17:26 CET 2008


See na.locf in the zoo package.  It does exactly that.

On Thu, Nov 13, 2008 at 12:07 PM, ravi <rv15i at yahoo.se> wrote:
> Hi,
> I have a vector where an integer is followed by a randomly varying number of NA elements. I want to replace the NA's with the preceding integer. Let me explain with a simple example :
> avec<- c(1,NA,NA,5,NA,3,4,NA,NA,NA,NA,9,NA,0,NA,NA)
> I want to get the following vector from a :
> bvec<-c(1,1,1,5,5,3,4,4,4,4,4,9,9,0,0,0)
>
> How can I do this with R? Will appreciate all the help that I can get.
> Thanking you,
> Ravi
>
> ______________________________________________
> R-help at r-project.org mailing list
> https://stat.ethz.ch/mailman/listinfo/r-help
> PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
> and provide commented, minimal, self-contained, reproducible code.
>



More information about the R-help mailing list