Version 0.17.0¶
Options¶
We started using options to configure the Koalas’ behavior. Now we have the following options:
compute.shortcut_limit(#717)compute.ops_on_diff_frames(#725)compute.default_index_type(#723)plotting.max_rows(#728)plotting.sample_ratio(#737)
We can also see the list and their descriptions in the User Guide of our project docs.
Multi-index columns support¶
We also continue improving multi-index columns support. We made the following APIs support multi-index columns:
Other new features and improvements¶
We added the following new features:
koalas:
koalas.DataFrame:
style(#712)
Along with the following improvements:
GroupBy.applyshould return Koalas DataFrame instead of pandas DataFrame (#731)Fix
rpowandrfloordivto use proper operators in Series (#735)Fix
rpowandrfloordivto use proper operators in DataFrame (#740)Add schema inference support at DataFrame.transform (#732)
Add
Optionclass to support type check and value check in options (#739)Added missing tests (#687, #692, #694, #709, #711, #730, #729, #733, #734)
Backward compatibility¶
We renamed two of the default index names from
one-by-oneanddistributed-one-by-onetosequenceanddistributed-sequencerespectively. (#679)We moved the configuration for enabling operations on different DataFrames from the environment variable to the option. (#725)
We moved the configuration for the default index from the environment variable to the option. (#723)