Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
R² 値と有意性コーディングでプロットに注釈を付けようとしていますが*、並置演算子ではなくシンボルとして渡すことができません。
*
私は試しました?plot.math、ここに私が試したものがあります
?plot.math
plot(1:10,1:10) text(6,4,expression(R^2==8)) text(6,4,expression(R^2==8^{**})) Error: unexpected '^' in "text(6,4,expression(R^2==8^{**"
式の中で使用する必要がありpasteます:
paste
text(4,6,expression(paste(R^2==8^"**")))
また
text(6,4,expression(paste(R^2==8, "**")))