Substitutions in Language Objects
Substitute.Rd
Substitute
differs from substitute
in so far as its first argument can be a variable that
contains an object of mode "language". In that case,
substitutions take place inside this object.
Examples
lang <- quote(sin(x)+z)
substitute(lang,list(x=1,z=2))
#> lang
Substitute(lang,list(x=1,z=2))
#> sin(1) + 2