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
set_tidy_names fails when wanting syntactic names #260
Comments
imanuelcostigan
added a commit
to imanuelcostigan/tibble
that referenced
this issue
May 23, 2017
krlmlr
added a commit
that referenced
this issue
May 23, 2017
- Fix error in `tidy_names(syntactic = TRUE, quiet = FALSE)` if not all names are fixed (#260, @imanuelcostigan).
krlmlr
added a commit
that referenced
this issue
May 27, 2017
- Fix error in `tidy_names(syntactic = TRUE, quiet = FALSE)` if not all names are fixed (#260, @imanuelcostigan). - The column width for non-syntactic columns is computed correctly again (#258). - The `print.tbl_df()` method is identical to `print.tbl()`, instead of calling `NextMethod()`, to protect against malformed tibbles that inherit from `"tbl_df"` but not `"tbl"`, as created e.g. by `ungroup()` in dplyr 0.5.0 and earlier. - Remove unused import declaration for assertthat.
krlmlr
added a commit
that referenced
this issue
May 27, 2017
- Fix error in `tidy_names(syntactic = TRUE, quiet = FALSE)` if not all names are fixed (#260, @imanuelcostigan). - The column width for non-syntactic columns is computed correctly again (#258). - The `print.tbl_df()` method is identical to `print.tbl()`, instead of calling `NextMethod()`, to protect against malformed tibbles that inherit from `"tbl_df"` but not `"tbl"`, as created e.g. by `ungroup()` in dplyr 0.5.0 and earlier. - Remove unused import declaration for assertthat.
krlmlr
added a commit
that referenced
this issue
May 29, 2017
- Added `format()` and `print()` methods for both `tbl` and `tbl_df` classes, to protect against malformed tibbles that inherit from `"tbl_df"` but not `"tbl"`, as created e.g. by `ungroup()` in dplyr 0.5.0 and earlier (#256, #263). - The column width for non-syntactic columns is computed correctly again (#258). - Printing a tibble doesn't apply quote escaping to list columns. - Fix error in `tidy_names(syntactic = TRUE, quiet = FALSE)` if not all names are fixed (#260, @imanuelcostigan). - Remove unused import declaration for assertthat.
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.
Reprex:
Analysis:
make_syntactic()
is not returning the parsed set of field names. Inputname
is[1] "a name" "b"
while last line of this function is assignment of parsed field names rather than full set of field names and hence returns only subset of field names that have been tidied:The text was updated successfully, but these errors were encountered: