print()
La función en R Language se usa para imprimir el argumento en la pantalla.
Sintaxis: print(x, dígitos, na.print)
Parámetros:
x: argumento especificado para mostrar
dígitos: define el número mínimo de dígitos significativos
na.print: indica el formato de salida de valores NA
Ejemplo 1:
# R program to illustrate # print function # Creating a data frame x <- cars[1:5, ] # Calling the print() function # to print the above data frame print(x)
Producción:
speed dist 1 4 2 2 4 10 3 7 4 4 7 22 5 8 16
Ejemplo 2:
# R program to illustrate # print function # Initializing a number x <- 15 / 7 # Calling the print() function # using digits parameter print(x, digits = 2) print(x, digits = 3) print(x, digits = 4)
Producción:
[1] 2.1 [1] 2.14 [1] 2.143
Ejemplo 3:
# R program to illustrate # print function # Creating a matrix x <- matrix(c(2, NA, 5, NA, 8, NA, 22, 67, 43), nrow = 3, byrow = TRUE) # Calling the print() function # using na.print parameter print(x, na.print = "")
Producción:
[, 1] [, 2] [, 3] [1, ] 2 5 [2, ] 8 [3, ] 22 67 43
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