You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jira@arrow.apache.org by "Ian Cook (Jira)" <ji...@apache.org> on 2021/02/24 20:13:00 UTC

[jira] [Created] (ARROW-11769) [R] Pull groups from grouped_df into RecordBatch or Table

Ian Cook created ARROW-11769:
--------------------------------

             Summary: [R] Pull groups from grouped_df into RecordBatch or Table
                 Key: ARROW-11769
                 URL: https://issues.apache.org/jira/browse/ARROW-11769
             Project: Apache Arrow
          Issue Type: Improvement
          Components: R
    Affects Versions: 3.0.0
            Reporter: Ian Cook
            Assignee: Ian Cook


It would be nice if
{code:java}
iris %>% group_by(Species) %>% record_batch() {code}
returned the same thing as
{code:java}
iris %>% record_batch() %>% group_by(Species) {code}
instead of losing the groups.



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