woodwork.data_column.DataColumn.to_pandas

DataColumn.to_pandas(copy=False)[source]

Retrieves the DataColumn’s underlying series.

Note: Do not modify the series unless copy=True has been set to avoid unexpected behavior

Parameters

copy (bool) – If set to True, returns a copy of the underlying series. If False, will return a reference to the DataColumn’s series, which, if modified, can cause unexpected behavior in the DataColumn. Defaults to False.

Returns

The underlying series of the DataColumn

Return type

pandas.Series