dbosak01 / libr

An R package to create data libraries and data dictionaries.
27 stars 1 forks source link

Option to silence column type output when importing #88

Closed kputschko closed 3 years ago

kputschko commented 3 years ago

In readr, the read_* functions have a hidden option to silence import messages by setting the argument col_types = cols(). Could you make that available via libr::libname as well?

dbosak01 commented 3 years ago

Sounds reasonable. Thanks for the suggestion.

dbosak01 commented 3 years ago

Added quiet parameter to libname() function to minimize output to console. Really only does something on read_csv, as other file types weren't outputting anything anyway. But may be a useful parameter in the future as more features become available.