-
Notifications
You must be signed in to change notification settings - Fork 991
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
rlang interferes with dcast ...~metric
API
#4913
Comments
Update: Replacing
|
From the linked issue, it looks like this is not something that can be fixed on |
I would leave it open in case we would want to provide an additional API as a workaround. Maybe Also note, it's not interaction between rlang::eval_tidy(...~x)
## Error in rlang::eval_tidy(... ~ x) : '...' used in an incorrect context As far as workarounds, quoting just the formula works. E.g. dt = dcast(melt.dt, "...~metric", value.var = "value", fill = NA) |
...~metric
API
This is a bug in rlang that we will fix on our side. |
Thanks Lionel! Closing this side then. |
Hello!
I am not sure if this is a Shiny issue, or a data.table issue, but a recent update to either package causes an error
Error in check_formula: '...' used in an incorrect context
when using...
in a formula for dcast.data.table() inside a shiny app. Outside of the shiny app, no issue. Please see a reproducible example below:The text was updated successfully, but these errors were encountered: