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.
A \cup B のように、R グラフに和集合記号を入力しようとしています。その方法を知っていますか?
これはうまくいくはずです:
plot(1:10, main = expression(A*union(B)))
を使用する必要がありますexpression。少し面倒ですが、これを試してください:
expression
plot.new() text(0.5,0.5,expression(paste("A",union(B))))
詳細については、を参照?plotmathしてください。
?plotmath