design
design copied to clipboard
Functions that fabricate or repair column names
Inspired by this list made by @Hadley in early vctrs work, regarding type coercion across the tidyverse.
Functions where we create column names out of thin air or from inputs and could / should do so according to common principles. this list will grow as we stumble across these
-
tidyr::spread()
-
dplyr::inner_join()
and friends -
dplyr::summarise()
-
dplyr::mutate()
-
tidyr::gather()
-
tidyr::unnest()
To add to this:
-
tidyr::separate()
-
tidyr::unite()
-
dplyr::bind_cols()
https://github.com/tidyverse/dplyr/issues/3772
-
dplyr::select()
-
dplyr::rename()
-
dplyr::transmute()
-
tibble::rownames_to_column()
-
tibble::rowid_to_column()
-
dplyr::*_join()
Duplicate of #101