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
columnnames
using CSV data = CSV.load("filepath.csv") Tables.columnnames(data) # returns (:filename, :delim, :keywords)--property names--instead of column names
The text was updated successfully, but these errors were encountered:
Indeed type returned by CSV.load seems to need to override the default return-value (or define getproperty differently)
CSV.load
getproperty
Sorry, something went wrong.
Yep. Besides that, is the default (automatically return properties) a good default, or should it error for types that don't have a defined method?
The default has always been to return propertynames.
propertynames
Tables.columnnames(Z)
Z = Tables.rowtable(X)
Z = Tables.dictrowtable(X)
No branches or pull requests
The text was updated successfully, but these errors were encountered: