What is the difference between tricky's set_standard_names() and tibble's set_tidy_names() ?

According to the tidyverse's styleguide :

Variable and function names should use only lowercase letters, numbers, and _.

library("tibble")
library("tricky")
table_sample <- tibble(
  `base élèves` = c("toto"), 
  `2017/07/07` = as.Date("2017-07-01")
  )
table_sample %>% 
  set_standard_names() %>% 
  glimpse()
table_sample %>% 
  set_tidy_names(syntactic = TRUE) %>% 
  glimpse()


blaquans/tricky documentation built on May 12, 2019, 9:29 p.m.