-
Notifications
You must be signed in to change notification settings - Fork 286
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
options(readr.show_col_types=FALSE) is not work on read_table() #1331
Comments
jimhester
added a commit
that referenced
this issue
Nov 22, 2021
`read_table()` is one of the functions that currently doesn't have a vroom equivalent, so is still using the first edition parser. When we added support for `show_col_types` we didn't port that back to the first edition parser, so it was missing in `read_table()` and the `read_delim_chunked()` functions. Fixes #1331
jennybc
pushed a commit
that referenced
this issue
Nov 29, 2021
`read_table()` is one of the functions that currently doesn't have a vroom equivalent, so is still using the first edition parser. When we added support for `show_col_types` we didn't port that back to the first edition parser, so it was missing in `read_table()` and the `read_delim_chunked()` functions. Fixes #1331
jennybc
pushed a commit
that referenced
this issue
Nov 29, 2021
`read_table()` is one of the functions that currently doesn't have a vroom equivalent, so is still using the first edition parser. When we added support for `show_col_types` we didn't port that back to the first edition parser, so it was missing in `read_table()` and the `read_delim_chunked()` functions. Fixes #1331
jennybc
pushed a commit
that referenced
this issue
Nov 30, 2021
`read_table()` is one of the functions that currently doesn't have a vroom equivalent, so is still using the first edition parser. When we added support for `show_col_types` we didn't port that back to the first edition parser, so it was missing in `read_table()` and the `read_delim_chunked()` functions. Fixes #1331
jennybc
pushed a commit
that referenced
this issue
Nov 30, 2021
`read_table()` is one of the functions that currently doesn't have a vroom equivalent, so is still using the first edition parser. When we added support for `show_col_types` we didn't port that back to the first edition parser, so it was missing in `read_table()` and the `read_delim_chunked()` functions. Fixes #1331
jennybc
added a commit
that referenced
this issue
Nov 30, 2021
* Add support for show_col_types for edition 1 parser `read_table()` is one of the functions that currently doesn't have a vroom equivalent, so is still using the first edition parser. When we added support for `show_col_types` we didn't port that back to the first edition parser, so it was missing in `read_table()` and the `read_delim_chunked()` functions. Fixes #1331 * Remove should_show_col_types This is the helper we use in vroom, but I think having it in readr would be too confusing because we already have should_show_types * Correct function name * document() * Update NEWS.md * Reformat for readability * Refactor should_show_types(); add tests * Move NEWS bullet Co-authored-by: Jennifer (Jenny) Bryan <jenny.f.bryan@gmail.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
options(readr.show_col_types=FALSE) is not work on read_table() and read_table is not allow set the parameter in the function for example:
read_table(show_col_types=FALSE)
The text was updated successfully, but these errors were encountered: