I have a list containing many data tables. For each of these tables I would like to replaces the NA's with 0.
I know how to change the NA's for each data table separately, but is there a way to put this into one command, e.g., using lapply?
For example: li is a list containing two data table, dt1 and dt2.
li <- list(dt1 = data.table(name = c(4,5), age = c(12, NA)), dt2= data.table(name = c(43,245,243), age = c(354,NA,NA)));
Changing the NA's to 0 in one data.table works like a charm:
d <- "dt1";
li[[d]][is.na(li[[d]])]<-0;
Results in:
> li
$dt1
name age
1: 4 12
2: 5 0
$dt2
name age
1: 43 354
2: 245 NA
3: 243 NA
But when I try:
test <- lapply(names(li), function(d) li[[d]][is.na(li[[d]])]<-0)
I get:
> test
[[1]]
[1] 0
[[2]]
[1] 0
Is there any way do this without using a loop over all data tables in my list?
lapply(li, function(d) {d[is.na(d)] <- 0; d })- germcd