Skip to content
Prev 219506 / 398500 Next

Odp: How to replace all <NA> values in a data.frame with another ( not 0) value

Hi

r-help-bounces at r-project.org napsal dne 04.05.2010 14:54:14:
Be careful if you replace NA in numeric columns.
'data.frame':   10 obs. of  3 variables:
 $ mp: num  20.9 19.9 20.1 20.2 18.9 ...
 $ so: num  18.8 18.6 18.2 17.9 18.1 ...
 $ le: num  48 49.1 48.8 42.6 46.1 ...
'data.frame':   10 obs. of  3 variables:
 $ mp: num  20.9 19.9 20.1 20.2 18.9 ...
 $ so: chr  "18.75" "000/000" "18.25" "17.89" ...
 $ le: num  48 49.1 48.8 42.6 46.1 ...
numeric column is now character and you can not use it for further 
analysis without some fiddling around.

Regards
Petr
http://www.R-project.org/posting-guide.html