I loaded a JuliaDB table, but how do I find the number of rows and columns?
size
doesn’t work.
I loaded a JuliaDB table, but how do I find the number of rows and columns?
size
doesn’t work.
Not sure if this is the recommended way, but seems to work:
length(t)
length(columns(t))