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
After #198 I find that:
using Tables a=[(a=i,b=j) for i=1:5,j=1:5] Tables.istable(a)
returns true, while if I do Tables.rows(a), I get an error saying that a is not a table.
Tables.rows(a)
a
If above, I change the definition to be a matrix of ordinary tuples, ie:
a=[(i,j) for i=1:5,j=1:5]
I get that Tables.istable(a) is now false, as expected.
Tables.istable(a)
(I'm using the latest release of Julia - 1.8.1.)
The text was updated successfully, but these errors were encountered:
@quinnj it is an issue with TableTraits.isiterabletable because matrices are iterable. Do you know what is the current use of TableTraits.jl?
TableTraits.isiterabletable
Sorry, something went wrong.
No branches or pull requests
After #198 I find that:
returns true, while if I do
Tables.rows(a)
, I get an error saying thata
is not a table.If above, I change the definition to be a matrix of ordinary tuples, ie:
a=[(i,j) for i=1:5,j=1:5]
I get that
Tables.istable(a)
is now false, as expected.(I'm using the latest release of Julia - 1.8.1.)
The text was updated successfully, but these errors were encountered: