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
Tables.subset(table, inds::Vector{Int})
I'm not sure if this method returns a table, a AbstractColumns object or a row iterator, because the documentation doesn't make that very clear.
AbstractColumns
For example:
# Code 1: table = #code... inds = [1, 2, 3] subset = Tables.subset(table, inds) column = Tables.getcolumn(subset, :colname) # Code 2: table = #code... inds = [1, 2, 3] subset = Tables.subset(table, inds) cols = Tables.columns(subset) column = Tables.getcolumn(cols, :colname)
In that case what would be the correct code?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'm not sure if this method returns a table, a
AbstractColumns
object or a row iterator, because the documentation doesn't make that very clear.For example:
In that case what would be the correct code?
The text was updated successfully, but these errors were encountered: