MaciekChudek opened a new issue, #38755:
URL: https://github.com/apache/arrow/issues/38755
### Describe the bug, including details regarding any error messages,
version, and platform.
Summarising over a set of columns, whose names include the name of the
summarising functions throws an error, whose message is completely
uninformative.
```
d %>% group_by(whatever) %>%
summarise(across(all_of(list_of_variable_names), ~ mean(.)))
#Error: Error : object '..temp3' not found
#Call collect() first to pull data into R.
```
where # in temp# seems to be the index of the offending variable in
list_of_variable_names - 1.
Easy to fix by renaming the column first, but took a while to locate the
problem due to the ambiguous error message. Also, I suspect the issue could be
avoided upstream by escaping or otherwise disambiguating the column and
function names.
### Component(s)
R
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]