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.
プロットのタイトルの一部に色を付けることはできますか?
x = 1:10 y = 1:10 plot(x, y, main="title (slope=1)")
slope=1このプロットでは、色を赤に変更したいと思います。
slope=1
これはあなたの問題に対する非常に簡単な解決策です:
plot(x, y) title(expression("title (" * phantom("slope=1)") * ")"), col.main = "black") title(expression(phantom("title (") * "slope=1"), col.main = "red")