ak._v2.ak_to_regular.to_regular¶
Defined in awkward._v2.operations.structure.ak_to_regular on line 8.
- ak._v2.ak_to_regular.to_regular(array, axis=1, highlevel=True, behavior=None)¶
- Parameters
array – Array-like data (anything
ak.to_layout
recognizes).axis (int or None) – The dimension at which this operation is applied. The outermost dimension is
0
, followed by1
, etc., and negative values count backward from the innermost:-1
is the innermost dimension,-2
is the next level up, etc. If None, convert all variable dimensions into regular ones or raise a ValueError if that is not possible.highlevel (bool) – If True, return an
ak.Array
; otherwise, return a low-levelak.layout.Content
subclass.behavior (None or dict) – Custom
ak.behavior
for the output array, if high-level.
Converts a variable-length axis into a regular one, if possible.
>>> irregular = ak.from_iter(np.arange(2*3*5).reshape(2, 3, 5))
>>> print(irregular.type)
2 * var * var * int64
>>> print(ak.to_regular(irregular).type)
2 * 3 * var * int64
>>> print(ak.to_regular(irregular, axis=2).type)
2 * var * 5 * int64
>>> print(ak.to_regular(irregular, axis=-1).type)
2 * var * 5 * int64
But truly irregular data cannot be converted.
>>> ak.to_regular(ak.Array([[1, 2, 3], [], [4, 5]]))
ValueError: in ListOffsetArray64, cannot convert to RegularArray because
subarray lengths are not regular
See also ak.from_regular
.