mode()
La función en R Language se usa para obtener o establecer el tipo o el modo de almacenamiento de un objeto.
Sintaxis:
modo(x)
modo(x) <- valor
Aquí «valor» es el modo deseado o ‘modo de almacenamiento’ (tipo) del objetoParámetros:
x: Objeto R
Ejemplo 1:
# R program to illustrate # mode function # Initializing some values x <- 3 y <- "a" # Calling the mode() function mode(x) mode(y)
Producción:
[1] "numeric" [1] "character"
Ejemplo 2:
# R program to illustrate # mode function # Initializing some values x <- 3 y <- "a" # Calling mode() function to # set the storage mode of the object mode(x) <- "character" mode(y) <- "numeric" # Getting the assigned storage mode mode(x) mode(y)
Producción:
[1] "character" [1] "numeric"
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