La función toString() en el lenguaje de programación R se usa para producir una string de un solo carácter que describe un objeto R.
Sintaxis: toString(x, ancho = NULL)
Parámetros:
- x: R objeto
- ancho: Sugerencia para el ancho máximo de campo. Los valores de NULL o 0 indican que no hay máximo. El valor mínimo aceptado es 6 y se toman valores menores como 6
Función toString() en el ejemplo del lenguaje R
Ejemplo 1: ejemplo básico de la función toString() en lenguaje R
R
# R program to illustrate # toString function # Initializing a string vector x <- c("GFG", "Geeks", "GeeksforGeekss") # Calling the toString() function toString(x)
Producción :
[1] "GFG, Geeks, GeeksforGeekss"
Ejemplo 2: formateo con la función toString() en lenguaje R
R
# R program to illustrate # toString function # Initializing a string vector x <- c("GFG", "Geeks", "GeeksforGeekss") # Calling the toString() function toString(x, width = 2) toString(x, width = 8) toString(x, width = 10)
Producción:
[1] "GF...." [1] "GFG, ...." [1] "GFG, G...."
Ejemplo 3: convertir array a string en R
R
# Matrix having 3 rows and 3 columns # filled by a single constant 5 mat <- (matrix(5, 3, 3)) print(mat) str <- toString(mat) print("String") print(str)
Producción:
[,1] [,2] [,3] [1,] 5 5 5 [2,] 5 5 5 [3,] 5 5 5 [1] "String" [1] "5, 5, 5, 5, 5, 5, 5, 5, 5"
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