Skip to content
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

Update strip.white documentation in fread #6159

Merged
merged 5 commits into from
Jun 1, 2024
Merged

Conversation

joshhwuu
Copy link
Member

Closes #2492

Small update to fread documentation:

d = fread("A  ,B  \n1,2\n3,4\n", strip.white=F)
colnames(d)
# [1] "A  " "B  "
d = fread("  A,  B\n1,2\n3,4\n", strip.white=F)
colnames(d)
# [1] "  A" "  B"

This behavior was updated a while back, probably as a byproduct of another change, but the documentation was never updated

man/fread.Rd Outdated Show resolved Hide resolved
man/fread.Rd Outdated Show resolved Hide resolved
Copy link
Member

@MichaelChirico MichaelChirico left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks!

@MichaelChirico MichaelChirico merged commit 35f2979 into master Jun 1, 2024
1 check passed
@MichaelChirico MichaelChirico deleted the freaddocupdate branch June 1, 2024 06:24
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

fread's skip.white=FALSE behavior
4 participants