You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jira@arrow.apache.org by "Nicola Crane (Jira)" <ji...@apache.org> on 2021/10/25 07:23:00 UTC

[jira] [Created] (ARROW-14457) [R] Add something about non-vectorised maths to the docs

Nicola Crane created ARROW-14457:
------------------------------------

             Summary: [R] Add something about non-vectorised maths to the docs
                 Key: ARROW-14457
                 URL: https://issues.apache.org/jira/browse/ARROW-14457
             Project: Apache Arrow
          Issue Type: Improvement
          Components: R
            Reporter: Nicola Crane


This difference in behaviour between base R and Arrow should be documented

{code:r}
> c(1*2) * c(3,4)
[1] 6 8
> Array$create(c(1,2)) * Array$create(c(3,4))
Array
<double>
[
  3,
  8
]
{code}




--
This message was sent by Atlassian Jira
(v8.3.4#803005)