-
Notifications
You must be signed in to change notification settings - Fork 130
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature request: Suppress message of new names being created in tibble()
#1549
Comments
This problem is already solved. tidyverse/readxl#580 (comment) Make sure you have up-to-date vctrs and use |
Thank you. Duplicate of #632 |
Yes, I see an option for the Please change the argument in the
And then add under arguments for
I believe that these changes would help make it easier for users to find this option. |
Due to discussion from r-lib/vctrs#1677 , the documentation should not be added to
|
I use |
Thanks for making this package. Would you consider passing the
quiet
argument from vctrs::vec_as_names() to be an argument (say.quiet
intibble::tibble()
? The default quiet =FALSE
is fine. At times, I would like to suppress the message of new names being created.This addition would be more useful in the
read_xlsx
function of thereadxl
package, which converts Excel files to R tibbles. As Excel files often have messy names, the names will often need to be repaired, which would call vctrs::vec_as_names(). For Excel files that are repetitive (same column structure but different data), I would like to suppress the message of new names being created. But to changereadxl
, the authors first must pass the argument from atibble()
function to theirs. Other users may benefit from packages that depend ontibble
to suppress these messages.What I am proposing is the option to remove this message in the
tibble()
function with thequiet
argument (that is passed tovctrs::vec_as_names()
):Session Info:
The text was updated successfully, but these errors were encountered: