To simplify the error message:
mtcars %>%
group_by(cyl = 1 + "") %>%
mutate(new = 1 + "")
#> Error in `group_by()` at dplyr/R/mutate.R:156:2:
#> ! Problem adding computed columns.
#> Caused by error in `mutate()`:
#> ! Problem while computing `cyl = 1 + ""`.
#> Caused by error in `1 + ""`:
#> ! non-numeric argument to binary operator
To simplify the error message: