Y
Hacker News
new
|
ask
|
show
|
jobs
by
cwyers
2545 days ago
map() in purrr is functionally equivalent to lapply(). If you can do something in lapply, you can do it with map.
1 comments
notafraudster
2545 days ago
Right, which is why my example used its cousin, apply, instead of lapply. apply over the row margins of a data frame does not have an equivalent in tidyverse.
link
hadley
2544 days ago
Beware that apply() coerces data frames to matrices, which is time consuming and forces all columns to have the same type.
link