Created
October 23, 2018 11:58
-
-
Save batpigandme/4174df10ac7355054ff8e5fb81ee0631 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(tidyverse, warn.conflicts = FALSE) | |
# data frame | |
mtcars | |
# as tibble | |
as.tibble(mtcars) | |
# rownames_to_column() | |
rownames_to_column(mtcars) | |
# rownames to column *and* tibble | |
as_tibble(rownames_to_column(mtcars)) | |
# DON'T DO THIS | |
as.tibble(mtcars) %>% rownames_to_column() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment