toString()
La función en R Language se usa para convertir un objeto en una string de un solo carácter.
Sintaxis: toString(x, ancho)
Parámetros:
x: ancho del objeto
: ancho máximo de string
Ejemplo 1:
# R program to convert an object to string # Creating a vector x <- c("Geeks", "for", "geeks") # Calling toString() Function toString(x) toString(x, width = 12)
Producción:
[1] "Geeks, for, geeks" [1] "Geeks, f...."
Ejemplo 2:
# R program to convert an object to string # Creating a matrix x <- matrix(c(1:9), 3, 3) # Calling toString() Function toString(x)
Producción:
[1] "1, 2, 3, 4, 5, 6, 7, 8, 9"
Publicación traducida automáticamente
Artículo escrito por nidhi_biet y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA