Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
1answer
116 views

Why do rapply and lapply handle NULL differently?

I'm aware that NULL values in lists can sometimes trip people up. I'm curious why in a specific instance lapply and rapply seem to treat NULL values differently. l <- list(a = 1, c = NULL, d = 3) ...