Subscripts in R when adding other text

谁说胖子不能爱 提交于 2019-12-05 02:00:42

You do not need paste (or quotes for that matter) at all:

expression( A[2]~and~B[2] )

Test:

plot(1,1, main=expression( A[2]~and~B[2] ) )

The syntactic principle is that tildes (which creates a space) and asterisks (non-space plotmath separator) are used to separate items and that no quotes are needed unless you are using a plotmath function name .... such as wanting the word "paste" or "sqrt" to appear in the displayed version of the expression.

Just paste them together:

expression(paste("A"[2], " and B"[2])

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!