Skip to content

Commit 4a6d60d

Browse files
committed
Add a todo
1 parent e58b5cf commit 4a6d60d

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

databricks/koalas/series.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -491,6 +491,8 @@ def dropna(self, axis=0, inplace=False, **kwargs):
491491
def head(self, n=5):
492492
return _col(self.to_dataframe().head(n))
493493

494+
# TODO: Categorical type isn't supported (due to PySpark's limitation) and
495+
# some doctests related with timestamps were not added.
494496
def unique(self):
495497
"""
496498
Return unique values of Series object.

0 commit comments

Comments
 (0)