You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
One behavioural aspect that has come up in pandas is the question about what to do with nulls in case of power(null, 0) or power(1, null): propagate the null value (as is otherwise always done for element-wise arithmetic operations), or in this case return an actual result (1 in both cases, in the idea that whathever value the null might represent, the result is always 1). Reference to the pandas issue: pandas-dev/pandas#29997. It seems that eg R (return 1) and SQL (propagate null) have different behaviour on this aspect. So if we want to support both use cases, an option to switch might be needed.
We have addition, subtraction, multiplication, and division.
Reporter: Jonathan Keane / @jonkeane
Assignee: Rok Mihevc / @rok
Related issues:
PRs and other links:
Note: This issue was originally created as ARROW-11070. Please see the migration documentation for further details.
The text was updated successfully, but these errors were encountered: