[R] missing value

Jacques VESLOT jacques.veslot at good.ibl.fr
Wed Aug 2 15:12:57 CEST 2006


dat[dat==9] <- NA
because the result of mean() is real and summary()'s output is a vector.
-------------------------------------------------------------------
Jacques VESLOT

CNRS UMR 8090
I.B.L (2ème étage)
1 rue du Professeur Calmette
B.P. 245
59019 Lille Cedex

Tel : 33 (0)3.20.87.10.44
Fax : 33 (0)3.20.87.10.31

http://www-good.ibl.fr
-------------------------------------------------------------------


Mauricio Cardeal a écrit :
> Hi all
> 
> # I have this data set and how can I assign NA´s in just one command ? 
> And why the summary(dat) function preserves the value 9 as real. ?
> 
> x <- c(1,2,3,9,4)
> y <- c(3,6,9,2,3)
> z <- c(9,9,2,2,8)
> w <- c(6,5,3,0,9)
> 
> dat <- cbind(x,y,z,w)
> summary(dat)
> 
> x[x==9] <- NA
> y[y==9] <- NA
> z[z==9] <- NA
> w[w==9] <- NA
> 
> summary(dat)
> summary(x)
> summary(y)
> summary(z)
> summary(w)
> 
> Thank you all,
> Mauricio
> 
> ______________________________________________
> R-help at stat.math.ethz.ch 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