LArray.
to_series
Converts LArray into Pandas Series.
dropna : bool, optional.
False by default.
Pandas Series
Examples
>>> arr = ndtest((2, 3), dtype=float) >>> arr.to_series() a b a0 b0 0.0 b1 1.0 b2 2.0 a1 b0 3.0 b1 4.0 b2 5.0 dtype: float64