Version 0.8.0ΒΆ

We added new functionalities, improved the documentation and fixed some bugs in the past week. Also, koalas.sql has an improvement (#448). Now Koalas DataFrame and some regular Python types can be used directly in SQL, for instance, as below:

>>> mydf = ks.range(10)
>>> x = range(4)
>>> ks.sql("SELECT * from {mydf} WHERE id IN {x}")
   id
0   0
1   1
2   2
3   3

We also added the following features:

koalas

koalas.DataFrame:

koalas.Series:

Along with the following improvements:

  • mean, sum, skew, kurtosis, min, max, std and var at DataFrame and Series supports numeric_only argument (#422)