We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I have noticed a regression introduced in v0.7.5 when loading a CSV containing only column names.
v0.7.5
Given a file foo.csv (containing only column names):
foo.csv
a, b
In CSV v0.7.4,
v0.7.4
julia> import CSV julia> using DataFrames julia> DataFrame(CSV.File("foo.csv")) 0×2 DataFrame
In CSV v0.7.5,
julia> import CSV julia> using DataFrames julia> DataFrame(CSV.File("foo.csv")) 0×0 DataFrame
I am using Julia version 1.4.2. I get the same result with various versions of DataFrames v0.21.x. CC @ianshmean
v0.21.x
The text was updated successfully, but these errors were encountered:
This was fixed by JuliaData/DataFrames.jl#2341; I think @bkamins is planning a new DataFrames release w/ the fix soon
Sorry, something went wrong.
No branches or pull requests
I have noticed a regression introduced in
v0.7.5
when loading a CSV containing only column names.Given a file
foo.csv
(containing only column names):In CSV
v0.7.4
,In CSV
v0.7.5
,I am using Julia version 1.4.2. I get the same result with various versions of DataFrames
v0.21.x
.CC @ianshmean
The text was updated successfully, but these errors were encountered: