Skip to content

Version 0.10.0

Compare
Choose a tag to compare
@HyukjinKwon HyukjinKwon released this 03 Jul 07:46
· 1219 commits to master since this release

We added infrastructure for usage logging (#494). It allows to use a custom logger to handle each API process failure and success. In Koalas, it has a built-in Koalas logger, databricks.koalas.usage_logging.usage_logger, with Python logging.

In addition, Koalas experimentally introduced type hints for both Series and DataFrame (#453). The new type hints are used as below:

def func(...) -> ks.Series[np.float]:
    ...
def func(...) -> ks.DataFrame[np.float, int, str]:
    ...

We also added the following features:

koalas.DataFrame:

koalas.Series:

Along with the following improvements:

  • Remaining Koalas Series.str functions (#496)
  • nunique in koalas.groupby.GroupBy.agg (#512)