I have a list containing many data tables. For each of these tables, I would like to replace NA with 0.
I know how to change the NA for each data table separately, but is there a way to put this in one command, for example using lapply?
For example: li is a list containing two data tables: 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 NA to 0 in a single .table data file 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 a way to do this without using a loop for all the data tables in my list?
source
share