We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da03015 commit e58b5cfCopy full SHA for e58b5cf
databricks/koalas/series.py
@@ -533,10 +533,6 @@ def unique(self):
533
534
>>> ks.Series([pd.Timestamp('2016-01-01') for _ in range(3)]).unique()
535
array(['2016-01-01T00:00:00.000000000'], dtype='datetime64[ns]')
536
-
537
- >>> ks.Series([pd.Timestamp('2016-01-01', tz='US/Eastern')
538
- ... for _ in range(3)]).unique()
539
- array(['2016-01-01T14:00:00.000000000'], dtype='datetime64[ns]')
540
"""
541
return pd.Series.unique(self.to_pandas())
542
0 commit comments