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
When files contains more than one csv-file name, the resulting table includes as expected and documented the chosen source column name:
files
source
tbl = CSV.File(files; source = :source) @assert length(files) > 1 :source ∈ keys(first(tbl)) # true
But when the Vector files contains only one item, the resulting table does not.
Vector
tbl = CSV.File(files; source = :source) @assert length(files) == 1 :source ∈ keys(first(tbl)) # false
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When
files
contains more than one csv-file name, the resulting table includes as expected and documented the chosensource
column name:But when the
Vector
files
contains only one item, the resulting table does not.The text was updated successfully, but these errors were encountered: