-
@hadleywickham I can see how to do the file loading with rowwise() now. If you have a tibble called df with a column called file with a list of paths: df %>% rowwise() %>% mutate(data = list(read_csv(file)))
-
@hadleywickham So yeah, I guess rowwise() does handle most of the cases.
-
@hadleywickham I get kind of fixated on doing something one way, so this was useful in having me rethink my methods.