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
Quote variable names when reporting on repair #407
Comments
Thanks. Do we need to quote all names, or only non-syntactic ones? |
Also need to display NAs tibble::tidy_names(c("", NA))
#> New names:
#> -> ..1
#> -> ..2
#> [1] "..1" "..2" And in general, needs to encode strings: tibble::tidy_names(c("\n", "\n"))
#> New names:
#>
#> ->
#> ..1
#>
#> ->
#> ..2
#> [1] "\n..1" "\n..2" |
Will add tests as part of #406. |
This old thread has been automatically locked. If you think you have found something related to this, please open a new issue and link to this old issue if necessary. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
When
set_tidy_names()
reports names affected by repair, they should be quoted in the message.Created on 2018-05-02 by the reprex package (v0.2.0).
Written quickly as an aside during a meeting with @hadley, now fleshed out a bit. Let me know if I/we should expand.
The text was updated successfully, but these errors were encountered: