When running
V_Honorarios_Formadores <- V_Honorarios_Formadores %>% mutate("Horas PRA/AA" = coalesce("Horas PRA/AA", 0))
I got the following error
Error: Can't combine `..1` <character> and `..2` <double>.
How can I solve it?
When running
V_Honorarios_Formadores <- V_Honorarios_Formadores %>% mutate("Horas PRA/AA" = coalesce("Horas PRA/AA", 0))
I got the following error
Error: Can't combine `..1` <character> and `..2` <double>.
How can I solve it?
Non-syntactic variable names must be enclosed among backticks, not regular quotes (i.e. `Horas PRA/AA`)
If you need more specific help, please provide a proper REPRoducible EXample (reprex) illustrating your issue.
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.
If you have a query related to it or one of the replies, start a new topic and refer back with a link.