PACTA_analysis
PACTA_analysis copied to clipboard
get rid of `{janitor}`
It's a bit unfortunate that we have this dependency on {janitor}
which...
- we only use for
janitor::clean_names(data)
andjanitor::make_clean_names()
- we then have to maintain this complex system of undoing whatever those functions do here R/unclean_column_names.R
- and then we also have to work around a long-standing bug in a dependency of
{janitor}
,{snakecase}
, to avoid cluttering our log with warnings
Unfortunately, getting rid of it is going to be tedious and complicated to adequately consider all the places and ways in which we move back and forth between what {janitor}
considers "clean names" and otherwise.
related to #137