as.name()
La función en R Language se usa para forzar el argumento a un nombre. Las funciones as.name()
y as.symbol()
son idénticas.
Sintaxis: como.nombre(x)
Parámetros:
x: Objeto a coaccionar
Ejemplo 1:
# R program to illustrate # as.name() function # Calling the as.name() function to # coerce the argument to a name x <- as.name("sample") # Calling the is.name() function # to check whether the argument is # name or not is.name(x)
Producción:
[1] TRUE
Ejemplo 2:
# R program to illustrate # as.name() function # Calling the as.name() function to # coerce the argument to a name x <- as.name("sample") # Getting the class of the argument class(x)
Producción:
[1] "name"
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