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

Add abstract function for null information #28145

Closed
Tracked by #27758
asfimport opened this issue Apr 12, 2021 · 1 comment
Closed
Tracked by #27758

Add abstract function for null information #28145

asfimport opened this issue Apr 12, 2021 · 1 comment

Comments

@asfimport
Copy link
Collaborator

Reporter: Fiona La / @lafiona

Note: This issue was originally created as ARROW-12346. Please see the migration documentation for further details.

@kevingurney
Copy link
Member

Marking this as resolved.

A public Valid property, which represents the null values in an Arrow array, was added to the arrow.array.Array classes in #35655.

Example:

>> a = arrow.array(uint64([1, 2, 3]), Valid=[true, false, true])

a = 

[
  1,
  null,
  3
]

>> a.Valid

ans =

  3x1 logical array

   1
   0
   1

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants