-
Notifications
You must be signed in to change notification settings - Fork 1k
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
fread: use fill with integer as ncol guess #5119
Merged
Merged
Changes from all commits
Commits
Show all changes
39 commits
Select commit
Hold shift + click to select a range
93f6db2
fread: turn off sampling for fill
ben-schwen 23ce31e
fixed stop
ben-schwen 117bc4b
add stopf
ben-schwen cb3d03b
fread: turn off sampling for fill
ben-schwen d47da4a
Merge branch 'fill_sample' of github.com:Rdatatable/data.table into f…
ben-schwen c4fdc2e
fread: turn off sampling for fill
ben-schwen 1044f98
fread turn off sampling for fill
ben-schwen 6dc2c9d
added coverage
ben-schwen a3e5864
coverage
ben-schwen 9b6bdb3
revert additional argument
ben-schwen 96f6a8d
fill upperbound
ben-schwen 79874c4
fixed comment
ben-schwen 99303e2
integer as fill argument
ben-schwen 7bc34e3
fix typo
ben-schwen 62ea4e7
fix L
ben-schwen c12bb77
add NEWS
ben-schwen a189b73
update verbose
ben-schwen de8ff85
undo verbose
ben-schwen d363f94
init cleanup
ben-schwen fbc2027
merge master
ben-schwen 1306cee
fix typo news
ben-schwen 826c29b
renum NEWS
ben-schwen 2b1df57
add proper cleanup of overallocated columns
ben-schwen 99540ae
add tests and coverage
ben-schwen 386a681
fix tests
ben-schwen e85c075
add tests
ben-schwen 1aa0712
cleanup
ben-schwen c13d9df
Merge branch 'master' into fill_sample
ben-schwen aa2c3aa
update NEWS
ben-schwen 2066bda
update tests
ben-schwen 701dfc7
Merge branch 'master' into fill_sample
MichaelChirico 7ec8dc8
Refine NEWS
MichaelChirico e50508a
use integer for fill
ben-schwen c10ddd1
refine warning
ben-schwen 0616651
wording
ben-schwen 55054e0
test readability
ben-schwen 6baad11
Merge branch 'master' into fill_sample
ben-schwen 5b96e1b
small tweak to NEWS
MichaelChirico 7f5d67e
Merge branch 'master' into fill_sample
MichaelChirico File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
this means that
fill = 1L
is handled identically tofill=TRUE
right? I am not sure there's a use case for the former, but maybe it should be documented?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.
Let's handle in follow-up if needed
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.
Yes but the handling is anyway that it uses the max of data.table estimate and user guess.