as.call()
La función en lenguaje R se utiliza para forzar el objeto del modo «lista» al modo «llamada». El primer elemento de la lista se convierte en la parte funcional de la llamada.
Sintaxis: as.call(x)
Parámetros:
x: un objeto R arbitrario
Ejemplo 1:
# R program to illustrate # as.call function # Calling the as.call() function as.call(list(list, 5, 10)) as.call(list(as.name("::"), as.name("list"), as.name("base")))
Producción:
.Primitive("list")(5, 10) list::base
Ejemplo 2:
# R program to illustrate # as.call function # Initializing a function round f <- round # Calling the as.call() function as.call(list(f, quote(A)))
Producción:
.Primitive("round")(A)
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