up vote 5 down vote favorite
share [g+] share [fb]

Another rather basic question for which I can't find a definitive answer online:

I have a data frame containing (in random places) a character value (say "foo")that I want to replace with a NA.

What's the best way to do so across the whole data frame?

Thanks,

Roberto

link|improve this question

69% accept rate
Don't forget to redefine your column as.numeric() switching a few characters from "foo" to NA won't coerce the whole set to numeric. You have to force it. (If that's what you're doing) – Brandon Bertelsen Jul 28 '10 at 22:15
feedback

2 Answers

up vote 3 down vote accepted

df[ df == "foo" ] = NA

link|improve this answer
I didn't know you could index a data frame that way! – JoFrhwld Jul 28 '10 at 21:49
feedback

One way to nip this in the bud is to convert that character to NA when you read the data in in the first place.

df <- read.csv("file.csv", na.strings = c("foo", "bar"))
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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