powered by
Wraps characters in round brackets.
wrap(x)
characters
wrapped characters.
Characters are automatically wrapped when performing basic symbolic operations to prevent unwanted results. E.g.: $$a+b * c+d$$ instead of $$(a+b) * (c+d)$$ To disable this behaviour run options(calculus.auto.wrap = FALSE).
options(calculus.auto.wrap = FALSE)
# NOT RUN { # wrap characters wrap('a+b') # wrap array of characters wrap(array(letters[1:9], dim = c(3,3))) # }
Run the code above in your browser using DataLab