Takuya UESHIN
Takuya UESHIN
> I haven't got enough info to see why we added https://github.com/databricks/koalas/pull/1592 before (performance or follow pandas old behavior). That's to follow the pandas behavior at that time and seems...
@shril sure, please go ahead! Thanks!
@shril I don't have a strong opinion on it. If you can implement it without `apply_batch()`, you don't need to use it.
@awdavidson As we have not been working on it, you can go ahead. One thing on the example implementation, using `self._index.values` is not a good idea because it collects all...
I'll take a look later. @itholic Could you push an empty or a merge commit to rerun tests as it's been a while since the last build.
Found a bug: ```py >>> pser = pd.Series([1,2,3], index=[10,20,30]) >>> pser == [3, 2, 1] 10 False 20 True 30 False dtype: bool ``` whereas: ```py >>> kser = ks.Series([1,2,3],...
Btw, we might also want to support binary operations with list-like Python objects? cc @HyukjinKwon ```py >>> pser + [3, 2, 1] 10 4 20 4 30 4 dtype: int64...
The `eq` case sounds different from the topic here which is binary operations between `Series` and `list`.
Hi @kaleyneufeld, Could you share the reproducible example so that we can investigate? Thanks!
@kaleyneufeld Thanks for sharing it. I tried it with Koalas `1.2.0`, `1.3.0`, and the latest master, but it's working as expected. What are the versions of Koalas, Spark, and PyArrow?