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

Nicola Crane updated ARROW-18199:
---------------------------------
        Parent: ARROW-18215
    Issue Type: Sub-task  (was: Bug)

> [R] Misleading error message in query using across()
> ----------------------------------------------------
>
>                 Key: ARROW-18199
>                 URL: https://issues.apache.org/jira/browse/ARROW-18199
>             Project: Apache Arrow
>          Issue Type: Sub-task
>          Components: R
>            Reporter: Nicola Crane
>            Assignee: Nicola Crane
>            Priority: Critical
>
> Error handling looks like it's happening in the wrong place - a comma has 
> been missed in the {{select()}} but it's wrongly appearing like it's an issue 
> with {{across()}}.  Can we do something to make this not happen?
> {code:r}
> download.file(
>   url = 
> "https://github.com/djnavarro/arrow-user2022/releases/download/v0.1/nyc-taxi-tiny.zip";,
>   destfile = here::here("data/nyc-taxi-tiny.zip")
> )
> library(arrow)
> library(dplyr)
> open_dataset("data") %>%
>   select(pickup_datetime, pickup_longitude, pickup_latitude 
> ends_with("amount")) %>%
>   mutate(across(ends_with("amount"), ~.x * 0.87, .names = "{.col}_gbp")) %>%
>   collect()
> {code}
> {code:r}
> Error in `across()`:
> ! Must be used inside dplyr verbs.
> Run `rlang::last_error()` to see where the error occurred.
> {code}



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

Reply via email to