.nest Series Accessor

.nest Series Accessor#

Constructor#

NestSeriesAccessor(series)

Accessor for operations on Series of NestedDtype

Functions#

NestSeriesAccessor.len()

Lengths of the list arrays

NestSeriesAccessor.to_lists([columns, ...])

Convert nested series into dataframe of list-array columns

NestSeriesAccessor.to_flat([columns])

Convert nested series into dataframe of flat arrays

NestSeriesAccessor.to_flatten_inner(field)

Explode the nested inner field and return as a NestedSeries

NestSeriesAccessor.set_column(column, value)

Set the column from a flat-array of values and return a new series

NestSeriesAccessor.set_flat_column(column, value)

Set the column from flat-array of values and return a new series

NestSeriesAccessor.set_list_column(column, value)

Set the field from list-array of values and return a new series

NestSeriesAccessor.set_filled_column(column, ...)

Set the column by repeating values and return a new series

NestSeriesAccessor.drop(column)

Remove the column(s) from the series and return a new series

NestSeriesAccessor.query(query)

Query the flat arrays with a boolean expression