replace()
La función en lenguaje R se usa para reemplazar los valores en el vector de string especificado x con índices dados en la lista por aquellos dados en valores.
Sintaxis: replace(x, lista, valores)
Parámetros:
x:
lista de vectores : valores de índices
: valores de reemplazo
Ejemplo 1:
# R program to illustrate # replace function # Initializing a string vector x <- c("GFG", "gfg", "Geeks") # Getting the strings x # Calling replace() function to replace # the word gfg at index 2 with the # GeeksforGeeks element y <- replace(x, 2, "GeeksforGeeks") # Getting the new replaced strings y
Producción :
[1] "GFG" "gfg" "Geeks" [1] "GFG" "GeeksforGeeks" "Geeks"
Ejemplo 2:
# R program to illustrate # replace function # Initializing a string vector x <- c("GFG", "gfg", "Geeks") # Getting the strings x # Calling replace() function to replace # the word GFG at index 1 and Geeks at # index 3 with the A and B elements # respectively y <- replace(x, c(1, 3), c("A", "B")) # Getting the new replaced strings y
Producción:
[1] "GFG" "gfg" "Geeks" [1] "A" "gfg" "B"
Publicación traducida automáticamente
Artículo escrito por Kanchan_Ray y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA