I\'m trying to annotate a plot with R² value and significance coding, but I can\'t pass * as a symbol and not as the juxtaposition operator.
*
I\'ve tried
You need to use paste inside your expression:
paste
text(4,6,expression(paste(R^2==8^"**")))
or
text(6,4,expression(paste(R^2==8, "**")))