list(list(NULL,NULL),list(NULL,NULL))
The result is:
[[1]]
[[1]][[1]]
NULL
[[1]][[2]]
NULL
[[2]]
[[2]][[1]]
NULL
[[2]][[2]]
NULL
Supposing I want to do this for larger numbers than 2, is there a way to get the same list structure with replicate?