I have a data.frame and some columns have NA values. I want to replace the NAs with zeros. How I do this?

link|improve this question

5  
small modification of stackoverflow.com/questions/7279089/… (which I found by searching "[r] replace NA with zero") ... – Ben Bolker Nov 17 '11 at 4:16
2  
please search... there are lots of questions like this that can be adapted for the answer – John Nov 17 '11 at 4:42
@BenBolker Look at my comment at aL3xa answer. – Renato Dinhani Conceição Nov 17 '11 at 14:12
@John Look at my comment at aL3xa answer – Renato Dinhani Conceição Nov 17 '11 at 14:13
feedback

2 Answers

up vote 8 down vote accepted

See my comment in @gsk3 answer. A simple example:

> m <- matrix(sample(c(NA, 1:10), 100, replace = TRUE), 10)
> d <- as.data.frame(m)
   V1 V2 V3 V4 V5 V6 V7 V8 V9 V10
1   4  3 NA  3  7  6  6 10  6   5
2   9  8  9  5 10 NA  2  1  7   2
3   1  1  6  3  6 NA  1  4  1   6
4  NA  4 NA  7 10  2 NA  4  1   8
5   1  2  4 NA  2  6  2  6  7   4
6  NA  3 NA NA 10  2  1 10  8   4
7   4  4  9 10  9  8  9  4 10  NA
8   5  8  3  2  1  4  5  9  4   7
9   3  9 10  1  9  9 10  5  3   3
10  4  2  2  5 NA  9  7  2  5   5

> d[is.na(d)] <- 0

> d
   V1 V2 V3 V4 V5 V6 V7 V8 V9 V10
1   4  3  0  3  7  6  6 10  6   5
2   9  8  9  5 10  0  2  1  7   2
3   1  1  6  3  6  0  1  4  1   6
4   0  4  0  7 10  2  0  4  1   8
5   1  2  4  0  2  6  2  6  7   4
6   0  3  0  0 10  2  1 10  8   4
7   4  4  9 10  9  8  9  4 10   0
8   5  8  3  2  1  4  5  9  4   7
9   3  9 10  1  9  9 10  5  3   3
10  4  2  2  5  0  9  7  2  5   5

There's no need to apply apply. =)

EDIT

You should also take a look at norm package. It has a lot of nice features for missing data analysis. =)

link|improve this answer
I already tried this code yesterday before you post it and not worked. Because this I posted the question. But I tried know and worked perfectly. I think I was doing something wrong. – Renato Dinhani Conceição Nov 17 '11 at 14:08
Maybe the object was of the wrong class... who knows... O_o – aL3xa Nov 17 '11 at 16:17
1  
@RenatoDinhaniConceição: if you tried something already, it's helpful to share that information when you ask the question; it helps to narrow down where the problem may be. – Aaron Nov 17 '11 at 19:33
feedback

For a single vector:

x <- c(1,2,NA,4,5)
x[is.na(x)] <- 0

For a data.frame, make a function out of the above, then apply it to the columns.

Please provide a reproducible example next time as detailed here:

How to make a great R reproducible example?

link|improve this answer
1  
is.na is generic function, and has methods for objects of data.frame class. so this one will also work on data.frames! – aL3xa Nov 17 '11 at 11:44
@aL3xa Good point! – gsk3 Nov 17 '11 at 12:06
When I ran methods(is.na) for the first time, I was like whaaa?!?. I love when stuff like that happen! =) – aL3xa Nov 17 '11 at 16:15
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.