[jira] [Updated] (ARROW-12711) [R] Bindings for paste(collapse), str_c(collapse), and str_flatten()

2022-06-30 Thread Jonathan Keane (Jira)


 [ 
https://issues.apache.org/jira/browse/ARROW-12711?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jonathan Keane updated ARROW-12711:
---
Fix Version/s: (was: 9.0.0)

> [R] Bindings for paste(collapse), str_c(collapse), and str_flatten()
> 
>
> Key: ARROW-12711
> URL: https://issues.apache.org/jira/browse/ARROW-12711
> Project: Apache Arrow
>  Issue Type: New Feature
>  Components: R
>Reporter: Ian Cook
>Priority: Major
>  Labels: query-engine
>
> These are the aggregating versions of string concatenation—they combine 
> values from a set of rows into a single value. 
> The bindings for {{paste()}} and {{str_c()}} might be tricky to implement 
> because when these functions are called with the {{coallapse}} argument 
> unset, they do _not_ aggregate.
> In {{summarise()}} we need to be able to use scalar concatenation within 
> aggregate concatenation, like this: 
> {code:java}
> starwars %>%
>   filter(!is.na(hair_color) & !is.na(eye_color)) %>% 
>   group_by(homeworld) %>% 
>   summarise(hair_and_eyes = paste0(paste0(hair_color, "-haired and ", 
> eye_color, "-eyed"), collapse = ", ")){code}



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (ARROW-12711) [R] Bindings for paste(collapse), str_c(collapse), and str_flatten()

2022-04-20 Thread Jira


 [ 
https://issues.apache.org/jira/browse/ARROW-12711?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Raúl Cumplido updated ARROW-12711:
--
Fix Version/s: 9.0.0
   (was: 8.0.0)

> [R] Bindings for paste(collapse), str_c(collapse), and str_flatten()
> 
>
> Key: ARROW-12711
> URL: https://issues.apache.org/jira/browse/ARROW-12711
> Project: Apache Arrow
>  Issue Type: New Feature
>  Components: R
>Reporter: Ian Cook
>Priority: Major
>  Labels: query-engine
> Fix For: 9.0.0
>
>
> These are the aggregating versions of string concatenation—they combine 
> values from a set of rows into a single value. 
> The bindings for {{paste()}} and {{str_c()}} might be tricky to implement 
> because when these functions are called with the {{coallapse}} argument 
> unset, they do _not_ aggregate.
> In {{summarise()}} we need to be able to use scalar concatenation within 
> aggregate concatenation, like this: 
> {code:java}
> starwars %>%
>   filter(!is.na(hair_color) & !is.na(eye_color)) %>% 
>   group_by(homeworld) %>% 
>   summarise(hair_and_eyes = paste0(paste0(hair_color, "-haired and ", 
> eye_color, "-eyed"), collapse = ", ")){code}



--
This message was sent by Atlassian Jira
(v8.20.7#820007)


[jira] [Updated] (ARROW-12711) [R] Bindings for paste(collapse), str_c(collapse), and str_flatten()

2021-12-16 Thread Jonathan Keane (Jira)


 [ 
https://issues.apache.org/jira/browse/ARROW-12711?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jonathan Keane updated ARROW-12711:
---
Fix Version/s: 8.0.0
   (was: 7.0.0)

> [R] Bindings for paste(collapse), str_c(collapse), and str_flatten()
> 
>
> Key: ARROW-12711
> URL: https://issues.apache.org/jira/browse/ARROW-12711
> Project: Apache Arrow
>  Issue Type: New Feature
>  Components: R
>Reporter: Ian Cook
>Priority: Major
>  Labels: query-engine
> Fix For: 8.0.0
>
>
> These are the aggregating versions of string concatenation—they combine 
> values from a set of rows into a single value. 
> The bindings for {{paste()}} and {{str_c()}} might be tricky to implement 
> because when these functions are called with the {{coallapse}} argument 
> unset, they do _not_ aggregate.
> In {{summarise()}} we need to be able to use scalar concatenation within 
> aggregate concatenation, like this: 
> {code:java}
> starwars %>%
>   filter(!is.na(hair_color) & !is.na(eye_color)) %>% 
>   group_by(homeworld) %>% 
>   summarise(hair_and_eyes = paste0(paste0(hair_color, "-haired and ", 
> eye_color, "-eyed"), collapse = ", ")){code}



--
This message was sent by Atlassian Jira
(v8.20.1#820001)


[jira] [Updated] (ARROW-12711) [R] Bindings for paste(collapse), str_c(collapse), and str_flatten()

2021-09-08 Thread Neal Richardson (Jira)


 [ 
https://issues.apache.org/jira/browse/ARROW-12711?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Neal Richardson updated ARROW-12711:

Fix Version/s: (was: 6.0.0)
   7.0.0

> [R] Bindings for paste(collapse), str_c(collapse), and str_flatten()
> 
>
> Key: ARROW-12711
> URL: https://issues.apache.org/jira/browse/ARROW-12711
> Project: Apache Arrow
>  Issue Type: New Feature
>  Components: R
>Reporter: Ian Cook
>Priority: Major
>  Labels: query-engine
> Fix For: 7.0.0
>
>
> These are the aggregating versions of string concatenation—they combine 
> values from a set of rows into a single value. 
> The bindings for {{paste()}} and {{str_c()}} might be tricky to implement 
> because when these functions are called with the {{coallapse}} argument 
> unset, they do _not_ aggregate.
> In {{summarise()}} we need to be able to use scalar concatenation within 
> aggregate concatenation, like this: 
> {code:java}
> starwars %>%
>   filter(!is.na(hair_color) & !is.na(eye_color)) %>% 
>   group_by(homeworld) %>% 
>   summarise(hair_and_eyes = paste0(paste0(hair_color, "-haired and ", 
> eye_color, "-eyed"), collapse = ", ")){code}



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


[jira] [Updated] (ARROW-12711) [R] Bindings for paste(collapse), str_c(collapse), and str_flatten()

2021-08-12 Thread Ian Cook (Jira)


 [ 
https://issues.apache.org/jira/browse/ARROW-12711?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Ian Cook updated ARROW-12711:
-
Description: 
These are the aggregating versions of string concatenation—they combine values 
from a set of rows into a single value. 

The bindings for {{paste()}} and {{str_c()}} might be tricky to implement 
because when these functions are called with the {{coallapse}} argument unset, 
they do _not_ aggregate.

In {{summarise()}} we need to be able to use scalar concatenation within 
aggregate concatenation, like this: 
{code:java}
starwars %>%
  filter(!is.na(hair_color) & !is.na(eye_color)) %>% 
  group_by(homeworld) %>% 
  summarise(hair_and_eyes = paste0(paste0(hair_color, "-haired and ", 
eye_color, "-eyed"), collapse = ", ")){code}

  was:
These are the aggregating versions of string concatenation—they combine values 
from a set of rows into a single value. 

The bindings for {{paste()}} and {{str_c()}} might be tricky to implement 
because when these functions are called with the {{coallapse}} argument unset, 
they do _not_ aggregate.

In {{summarise()}} we need to be able to use scalar concatenation within 
aggregate concatenation, like this: 
{code:java}
starwars %>%
  filter(!is.na(hair_color) & !is.na(eye_color)) %>% 
  group_by(homeworld) %>% 
  summarise(hair_and_eyes = paste0(paste0(hair_color, "-haired and ", 
"eye_color", "-eyed"), collapse = ", ")){code}


> [R] Bindings for paste(collapse), str_c(collapse), and str_flatten()
> 
>
> Key: ARROW-12711
> URL: https://issues.apache.org/jira/browse/ARROW-12711
> Project: Apache Arrow
>  Issue Type: New Feature
>  Components: R
>Reporter: Ian Cook
>Priority: Major
>  Labels: query-engine
> Fix For: 6.0.0
>
>
> These are the aggregating versions of string concatenation—they combine 
> values from a set of rows into a single value. 
> The bindings for {{paste()}} and {{str_c()}} might be tricky to implement 
> because when these functions are called with the {{coallapse}} argument 
> unset, they do _not_ aggregate.
> In {{summarise()}} we need to be able to use scalar concatenation within 
> aggregate concatenation, like this: 
> {code:java}
> starwars %>%
>   filter(!is.na(hair_color) & !is.na(eye_color)) %>% 
>   group_by(homeworld) %>% 
>   summarise(hair_and_eyes = paste0(paste0(hair_color, "-haired and ", 
> eye_color, "-eyed"), collapse = ", ")){code}



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


[jira] [Updated] (ARROW-12711) [R] Bindings for paste(collapse), str_c(collapse), and str_flatten()

2021-08-12 Thread Ian Cook (Jira)


 [ 
https://issues.apache.org/jira/browse/ARROW-12711?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Ian Cook updated ARROW-12711:
-
Description: 
These are the aggregating versions of string concatenation—they combine values 
from a set of rows into a single value. 

The bindings for {{paste()}} and {{str_c()}} might be tricky to implement 
because when these functions are called with the {{coallapse}} argument unset, 
they do _not_ aggregate.

In {{summarise()}} we need to be able to use scalar concatenation within 
aggregate concatenation, like this: 
{code:java}
starwars %>%
  filter(!is.na(hair_color) & !is.na(eye_color)) %>% 
  group_by(homeworld) %>% 
  summarise(hair_and_eyes = paste0(paste0(hair_color, "-haired and ", 
"eye_color", "-eyed"), collapse = ", ")){code}

  was:These are the aggregating versions of string concatenation—they combine 
values from a set of rows into a single value. 


> [R] Bindings for paste(collapse), str_c(collapse), and str_flatten()
> 
>
> Key: ARROW-12711
> URL: https://issues.apache.org/jira/browse/ARROW-12711
> Project: Apache Arrow
>  Issue Type: New Feature
>  Components: R
>Reporter: Ian Cook
>Priority: Major
>  Labels: query-engine
> Fix For: 6.0.0
>
>
> These are the aggregating versions of string concatenation—they combine 
> values from a set of rows into a single value. 
> The bindings for {{paste()}} and {{str_c()}} might be tricky to implement 
> because when these functions are called with the {{coallapse}} argument 
> unset, they do _not_ aggregate.
> In {{summarise()}} we need to be able to use scalar concatenation within 
> aggregate concatenation, like this: 
> {code:java}
> starwars %>%
>   filter(!is.na(hair_color) & !is.na(eye_color)) %>% 
>   group_by(homeworld) %>% 
>   summarise(hair_and_eyes = paste0(paste0(hair_color, "-haired and ", 
> "eye_color", "-eyed"), collapse = ", ")){code}



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


[jira] [Updated] (ARROW-12711) [R] Bindings for paste(collapse), str_c(collapse), and str_flatten()

2021-08-12 Thread Ian Cook (Jira)


 [ 
https://issues.apache.org/jira/browse/ARROW-12711?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Ian Cook updated ARROW-12711:
-
Labels: query-engine  (was: )

> [R] Bindings for paste(collapse), str_c(collapse), and str_flatten()
> 
>
> Key: ARROW-12711
> URL: https://issues.apache.org/jira/browse/ARROW-12711
> Project: Apache Arrow
>  Issue Type: New Feature
>  Components: R
>Reporter: Ian Cook
>Priority: Major
>  Labels: query-engine
>
> These are the aggregating versions of string concatenation—they combine 
> values from a set of rows into a single value. 



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


[jira] [Updated] (ARROW-12711) [R] Bindings for paste(collapse), str_c(collapse), and str_flatten()

2021-08-12 Thread Ian Cook (Jira)


 [ 
https://issues.apache.org/jira/browse/ARROW-12711?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Ian Cook updated ARROW-12711:
-
Fix Version/s: 6.0.0

> [R] Bindings for paste(collapse), str_c(collapse), and str_flatten()
> 
>
> Key: ARROW-12711
> URL: https://issues.apache.org/jira/browse/ARROW-12711
> Project: Apache Arrow
>  Issue Type: New Feature
>  Components: R
>Reporter: Ian Cook
>Priority: Major
>  Labels: query-engine
> Fix For: 6.0.0
>
>
> These are the aggregating versions of string concatenation—they combine 
> values from a set of rows into a single value. 



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


[jira] [Updated] (ARROW-12711) [R] Bindings for paste(collapse), str_c(collapse), and str_flatten()

2021-08-12 Thread Ian Cook (Jira)


 [ 
https://issues.apache.org/jira/browse/ARROW-12711?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Ian Cook updated ARROW-12711:
-
Description: These are the aggregating versions of string 
concatenation—they combine values from a set of rows into a single value. 

> [R] Bindings for paste(collapse), str_c(collapse), and str_flatten()
> 
>
> Key: ARROW-12711
> URL: https://issues.apache.org/jira/browse/ARROW-12711
> Project: Apache Arrow
>  Issue Type: New Feature
>  Components: R
>Reporter: Ian Cook
>Priority: Major
>
> These are the aggregating versions of string concatenation—they combine 
> values from a set of rows into a single value. 



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


[jira] [Updated] (ARROW-12711) [R] Bindings for paste(collapse), str_c(collapse), and str_flatten()

2021-08-12 Thread Ian Cook (Jira)


 [ 
https://issues.apache.org/jira/browse/ARROW-12711?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Ian Cook updated ARROW-12711:
-
Summary: [R] Bindings for paste(collapse), str_c(collapse), and 
str_flatten()  (was: [R] Bindings for paste(collapse) and str_flatten())

> [R] Bindings for paste(collapse), str_c(collapse), and str_flatten()
> 
>
> Key: ARROW-12711
> URL: https://issues.apache.org/jira/browse/ARROW-12711
> Project: Apache Arrow
>  Issue Type: New Feature
>  Components: R
>Reporter: Ian Cook
>Priority: Major
>




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