Haejoon Lee
Haejoon Lee
I'm working on this.
@shlok-dev 1. actually the release schedule is up to maintainers of Koalas like @HyukjinKwon , @ueshin . (since I'm not a maintainer of this repository 😄 ) 2. and currently...
@shlok-dev It's my pleasure. thanks for understanding :)
@leihuang Thanks for sharing!
Thanks for the report!! Seems like bug in Koalas, we should fix this.
FYI. koalas can change name of columns like this, ```python >>> kdf.columns = kdf.columns.rename('column_renamed') ``` or like that ```python >>> tmp_columns = kdf.columns >>> tmp_columns.name = 'column_renamed' >>> kdf.columns =...
@HyukjinKwon , Seems like SPARK-24695 is resolved, can we support calendar in Koalas now ??
Yeah, for some case we use `mapInPandas` which leveraging the `pandas_udf` internally. https://github.com/databricks/koalas/blob/07d846225d27492a9b85e58900018fda576650e3/databricks/koalas/frame.py#L2557-L2563
Unfortunately, Koalas doesn't support `DatetimeIndex` with specifying timezone yet. `DatetimeIndex` is a feature recently added to more strictly support data types, and there are still many missing features for now.
@HyukjinKwon , Should we add a note to our documents that we don't want to support this, and close this issue ?