You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
DataFrame.size function should give the total number of bytes on the arkouda server, which will frequently be the number of rows times the number of columns. However, it currently appears to be the number of rows. Please see the example below.
DataFrame.size function should give the total number of bytes on the arkouda server, which will frequently be the number of rows times the number of columns. However, it currently appears to be the number of rows. Please see the example below.
df = ak.DataFrame({'col1': [1, 2, 3], 'col2': [4, 5, 6]})
df.size
3
df.to_pandas().size
6
The text was updated successfully, but these errors were encountered: