read_clean_csv() reads a CSV file and cleans the column names in one step.
It leverages readr::read_csv() for reading and janitor::clean_names() for
making column names tidyverse-friendly (lowercase, no spaces, no special
characters). By default, column type messages are suppressed. Set
verbose = TRUE to display them.
Arguments
- file_path
A character string with the path to the CSV file.
- verbose
Logical. If
TRUE, displays column type messages fromreadr::read_csv(). Defaults toFALSE.
