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/11/03 10:39:00 UTC

[jira] [Created] (ARROW-14568) [R] Implement updating values via square brackets not implemented

Nicola Crane created ARROW-14568:
------------------------------------

             Summary: [R] Implement updating values via square brackets not implemented
                 Key: ARROW-14568
                 URL: https://issues.apache.org/jira/browse/ARROW-14568
             Project: Apache Arrow
          Issue Type: Improvement
          Components: R
            Reporter: Nicola Crane


Updating values via square brackets isn't currently implemented 
{code:r}
library(arrow)
my_arr <- Array$create(1:5)
my_arr[1] <- 3
# Error in my_arr[1] <- 3 : object of type 'environment' is not subsettable

aq_table <- Table$create(airquality)
aq_table[[1]][1] <- 6
#  object of type 'environment' is not subsettable
{code}



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