tladeras’s avatartladeras’s Twitter Archive—№ 5,243

  1. …in reply to @hadleywickham
    @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)))
    1. …in reply to @tladeras
      @hadleywickham So yeah, I guess rowwise() does handle most of the cases.
      1. …in reply to @tladeras
        @hadleywickham I get kind of fixated on doing something one way, so this was useful in having me rethink my methods.