Skip to content
New issue

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

DataFrame.size to match pandas #2929

Closed
ajpotts opened this issue Jan 23, 2024 · 1 comment · Fixed by #2961
Closed

DataFrame.size to match pandas #2929

ajpotts opened this issue Jan 23, 2024 · 1 comment · Fixed by #2961
Assignees
Labels
bug Something isn't working

Comments

@ajpotts
Copy link
Contributor

ajpotts commented Jan 23, 2024

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

@stress-tess
Copy link
Member

Linking comment from PR that's related to this issue: #2943 (comment)

ajpotts added a commit to ajpotts/arkouda that referenced this issue Feb 9, 2024
ajpotts added a commit to ajpotts/arkouda that referenced this issue Feb 9, 2024
github-merge-queue bot pushed a commit that referenced this issue Feb 9, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants