x <- list(a = data.frame(x = 1:2, y = 5:6), b = data.frame(x = 3:4, y = 7:8))
ldply_base(x)
ldply_base(x, .id = NULL)
ldply_base(unname(x))
ldply_base(x, .id = "test")
# compare against standard plyr::ldply
#plyr::ldply(x, .id="test")
str(ldply_base(x))
#str(plyr::ldply(x))
x <- c("01.01.2025","02.01.2025")
ldply_base(x, as.Date.character, tryFormats = "%d.%m.%Y")
#plyr::ldply(x, as.Date.character, tryFormats = "%d.%m.%Y")
Run the code above in your browser using DataLab