Version 0.10.0ΒΆ

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)