search for: er34

Displaying 3 results from an estimated 3 matches for "er34".

Did you mean: eb34
2020 Sep 22
2
Encontrar un dato y añadirlo a otra columna
Buenas, A ver si alguien sabe como hacer lo siguiente: Tengo un df con letras y numeros, quiero que si me detecta un numero en concreto me a?ada dicho numero en otra columna. Algo asi df<-data.frame(c("AV 23","PEPE 34","QWE","AV 24","WERRR ER34","AV 25")) colnames(df)<-c("nombre1") df[grepl("AV 23",df$nombre1), "Nombre1_numero"]= "23" df[grepl("AV 24",df$nombre1), "Nombre1_numero"]= "24" df[grepl("AV 25",df$nombre1), "Nombre1_numero&quo...
2012 Dec 13
2
replace parenthetical phrases in a string
R-helpers, I have a vector of character strings in which I would like to replace each parenthetical phrase with a single space, " ". For example if I start with x, I would like to end up with y. x <- c("My toast=bog(keep=3 no=4) and eggs(er34)omit=32", "dogs have ears", "cats have tails (and ears, too!)") y <- c("My toast=bog and eggs omit=32", "dogs have ears", "cats have tails ") I'm guessing that this can be done with gsub(), but I have never mastered the mysteries of...
2020 Sep 23
2
Encontrar un dato y añadirlo a otra columna
...scribi?: Buenas, A ver si alguien sabe como hacer lo siguiente: Tengo un df con letras y numeros, quiero que si me detecta un numero en concreto me a?ada dicho numero en otra columna. Algo asi df<-data.frame(c("AV 23","PEPE 34","QWE","AV 24","WERRR ER34","AV 25")) colnames(df)<-c("nombre1") df[grepl("AV 23",df$nombre1), "Nombre1_numero"]= "23" df[grepl("AV 24",df$nombre1), "Nombre1_numero"]= "24" df[grepl("AV 25",df$nombre1), "Nombre1_numero&quo...