Replies: 4 comments 3 replies
-
Menudo caso complicado, no se me hubiera ocurrido sola. ¡Gracias por resolverlo! |
Beta Was this translation helpful? Give feedback.
-
@Julenasti tu encontraste otra forma de resolverlo verdad? |
Beta Was this translation helpful? Give feedback.
-
Sí tenía la duda de si era mejor utilizar
Aquí un ejemplo rápido por si ayuda (@onadeulofeu, @ibartomeus, @Pakillo):
|
Beta Was this translation helpful? Give feedback.
-
En este sentido, si queréis que por ejemplo el usuario especifique el nombre de las variables que se generan (al utilizar https://cran.microsoft.com/snapshot/2019-09-26/web/packages/dplyr/vignettes/programming.html |
Beta Was this translation helpful? Give feedback.
-
tt <- function(df, c1, c2){
o <- df %>% rowwise() %>% mutate(
new = .data[[c1]]*.data[[c2]]
)
return(o)
}
Beta Was this translation helpful? Give feedback.
All reactions