Compruebe si el argumento es un nombre en la programación R: función is.name()

is.name()La función en R Language se usa para devolver VERDADERO si el argumento es el nombre; de ​​lo contrario, devuelve FALSO. Las funciones is.name() e is.symbol() son idénticas.

Sintaxis: es.nombre(x)

Parámetros:
x: R objeto a probar

Ejemplo 1:

# R program to illustrate
# is.name() function
  
# Initializing a string
x <- "sample"
  
# Calling the is.name() function
# to check whether the argument is
# name or not
is.name(x)

Producción:

[1] FALSE

Ejemplo 2:

# R program to illustrate
# is.name() function
  
# Coercing 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

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

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *