ak.firsts — Awkward Array 2.8.2 documentation (original) (raw)

Defined in awkward.operations.ak_firsts on line 25.

ak.firsts(array, axis=1, *, highlevel=True, behavior=None, attrs=None)#

Parameters:

Selects the first element of each non-empty list and inserts None for each empty list.

For example,

array = ak.Array([[1.1], [2.2], [], [3.3], [], [], [4.4], [5.5]]) ak.firsts(array).show() [1.1, 2.2, None, 3.3, None, None, 4.4, 5.5]

See ak.singletons to invert this function.