在没有前导字符的情况下向 R 中的图形添加上标

Adding superscript to graph in R with no preceding character

我正在尝试将 ab 形式的文本添加到图表而不是 a b.

这很好用:

> xlab = expression(paste("a"^"b"))

如果我反转它们,我得到:

Error: unexpected '^' in "xlab = expression(paste(^"

实施它的正确方法是什么?

尝试phantom()

plot(0, xlab = ~ phantom() ^ a * b)