marlene marchena <marchenamarlene <at> gmail.com> writes: > > Hi R users, > > Someone knows how to replace Infinite value by zero. I have a vector with > some Inf value and I want to substitute these values by zero to get the mean > of the components of the vector. > > Any idea? > > Many thanks, > > Marlene.
Hi Marlene, if you just want to calculate the mean of the non-infinite values, you can use this statement: mean(x[!is.infinite(x)]) Sven ______________________________________________ R-help@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.