R
수학적 주석 넣기(Mathematical Annotation in R)
이부일
2018. 11. 7. 12:58
Mathematical Annotation in R
Want to write mathematical symbols and expressions in R graphics? You can use an R expression()
instead of normal text, e.g. plot(1:10, main = expression(alpha + beta))
. Below is a demo that shows you everything about plotting math in R (it was written by the R Core Team; see ?plotmath
for details):
Combining expressions and text
If you want to combine multiple mathematical expressions with text, use paste()
inside expression()
, as in the following.
Finally, if we want to include variables from an R session in mathematical expressions, and substitute in their actual values, we can use substitute()
.
[출처] https://vis.supstat.com/2013/04/mathematical-annotation-in-r/