Skip to content
#

apache-arrow

Here are 38 public repositories matching this topic...

nsmith-
nsmith- commented Jan 22, 2021

We can add to a highlevel array with a record, e.g.

a = ak.Array({"x": [1, 2, 3], "y": [4, 5, 6]})
a["z"] = [7, 8, 9]

but we can't delete:

del a["z"]  # AttributeError
a["z"] = None  # makes a numpy object array

Improve this page

Add a description, image, and links to the apache-arrow topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the apache-arrow topic, visit your repo's landing page and select "manage topics."

Learn more