[R] replacing NaN for every attribute in my data

Yasir kaheil at gmail.com
Wed Jul 11 20:56:16 CEST 2012


You can try this:
 for (i in 1:length(ds)) {
dummy<-ds[[i]];
dummy[is.nan(dummy)]<-0
ds[[i]]<-dummy
}


if is.nan doesn't work, replace with is.na

-----
Yasir Kaheil

--
View this message in context: http://r.789695.n4.nabble.com/replacing-NaN-for-every-attribute-in-my-data-tp4636160p4636163.html
Sent from the R help mailing list archive at Nabble.com.



More information about the R-help mailing list