Hi I have a function in R:
myfunction<-function(.data, pvalue, roundto=2){
glue::glue_data(.x=.data,
"p={format(round(pvalue,digits=roundto),nsmall=roundto}")
}
This works fine when I pass .data$pvalue as pvalue to myfunction()
Ideally I would like not to have to write '.data$' each time, as pvalue will be a column in .data,
I've looked into this and tried quos, {{, !! etc. but get various errors including:
Error: Quosures can only be unquoted within a quasiquotation context.
# Bad:
list(!!myquosure)
# Good:
dplyr::mutate(data, !!myquosure)
Error: Can't convert a `quosure/formula` object to a double vector
If anyone has any suggestions please let me know!
Since
glue_data
accepts expressions as strings, the easiest thing to do is to capture the inputpvalue
as a string also: