I'm trying to represent $r^*$ in R matplot:

expression(r^*(bold(X)))

but the interpreter seems to get caught at the '^*' part. Any solutions?

有帮助吗?

解决方案

Try this:

plot.new()
text(0.5,0.5,expression(r^"*"*(bold(X))))

A raw * is used to separate (juxtapose) the plotted expressions, see ?plotmath. Here, you wish to print an asterisk as plain text.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top