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
read_table using any whitespace as a delimiter #608
Conversation
I think we need to preserve existing |
could we call this |
Oh true, the behaviour wrt quotes etc is totally different. Maybe to echo |
This is a more exact replacement for `utils::read.table()` Fixes #608
R/read_table.R
Outdated
#' arbitrary amounts of whitespace, it first finds empty columns and then | ||
#' parses like a fixed width file. `spec_table()` returns the column | ||
#' specification rather than a data frame. | ||
#' `read_table()` and `read_table2()` are designed to read the type of textual |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You might want to add an explicit @description
here
R/tokenizer.R
Outdated
|
||
#' @export | ||
#' @rdname Tokenizers | ||
#' @param begin,end Begin and end offsets for each file. These are C++ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Included by mistake?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yep thanks
This is a more exact replacement for `utils::read.table()` Fixes #608
Fixes #607
This implementation replaces the current implementation of
read_table()
. Not sure if we want to do that or preserve the old behavior asread_table()
or another function.