bquote()
La función en R Language se usa para citar los argumentos que se le pasan, excepto los valores que están envueltos en ‘ .() ‘. Evalúa los valores envueltos y cita el resultado.
Sintaxis: bquote(expr)
Parámetros:
expr: objeto de lenguaje
Ejemplo 1:
# R program to quote an expression # Assigning value to variable x <- 10 # Calling bquote() Function bquote(x == x) bquote(x == 10) bquote(x == .(x)) bquote(x == .(x * 2))
Producción:
x == x x == 10 x == 10 x == 20
Ejemplo 2:
# R program to quote an expression # Assigning value to variable z <- 10 # Calling bquote() Function bquote(function(x, y = .(z)) x + y) # Plotting a graph with the default value plot(1:10, z+(1:10), main = bquote(z == .(z)))
Producción:
function(x, y = 10) x + y
Publicación traducida automáticamente
Artículo escrito por nidhi_biet y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA