Skip to content

Commit 42a479d

Browse files
committed
Add a todo
1 parent 3fee00f commit 42a479d

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
@@ -485,6 +485,8 @@ def dropna(self, axis=0, inplace=False, **kwargs):
485485
def head(self, n=5):
486486
return _col(self.to_dataframe().head(n))
487487

488+
# TODO: Categorical type isn't supported (due to PySpark's limitation) and
489+
# some doctests related with timestamps were not added.
488490
def unique(self):
489491
"""
490492
Return unique values of Series object.

0 commit comments

Comments
 (0)