eland.Series.unique¶
- Series.unique() Series¶
Returns all unique values within a Series. Note that behavior is slightly different between pandas and Eland: pandas will return values in the order they’re first seen and Eland returns values in sorted order.
Returns¶
- pd.Series
A series containing unique values of given series is returned.
See Also¶