【发布时间】:2020-03-13 11:59:11
【问题描述】:
vroom::vroom() 给控制台一个相当冗长的message。例如:
> my_data = vroom::vroom("my_data.csv")
## Rows: 6,608
## Columns: 9
## Delimiter: ";"
## chr [2]: panel_rev, pcb_rev
## dbl [5]: panel_id, panel_type, work_order_lot_id, location_id, panel_number
## dttm [2]: marking_dt, created_dt
##
## Use `spec()` to retrieve the guessed column specification
## Pass a specification to the `col_types` argument to quiet this message
除了my_data = suppressMessages(vroom::vroom("my_data.csv")) 之外,还有其他方法可以使其静音吗?或者这是首选方法吗?
【问题讨论】:
-
目前没有看到任何方法可以避免在
show_spec_summary(out, locale = locale)中运行vroom行,显然用户不想看到这个。仍在等待tidyverse包裹do_all_my_thinking_for_me