VOOZH about

URL: https://www.geeksforgeeks.org/r-language/evaluate-and-quote-an-expression-in-r-programming-bquote-function/

⇱ Evaluate and Quote an Expression in R Programming - bquote() Function - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Evaluate and Quote an Expression in R Programming - bquote() Function

Last Updated : 15 Jul, 2025
bquote() function in R Language is used to quote the arguments passed to it, except the values which are wrapped in '.()'. It evaluates the wrapped values and quotes the result.
Syntax: bquote(expr) Parameters: expr: language object
Example 1: Output:
x == x
x == 10
x == 10
x == 20
Example 2: Output:
function(x, y = 10) x + y
👁 Image
Comment
Article Tags:

Explore