以下のコードを使用して、いくつかの注釈付きの簡単なグラフを生成しています。
require(ggplot2); data(mtcars)
ggplot(mtcars, aes(x = wt, y = mpg)) +
geom_point() +
annotate("text", x = 4, y = 25, label = "This should be bold\nand this not",
colour = "red") +
geom_vline(xintercept = 3.2, colour = "red")
そのチャートでは、テキスト注釈のフレーズの最初の部分に太字フォントを適用したいと思います。
これは太字にする必要があります
しかし、私はテキストの残りの部分がフォントフェイスとスタイルに関して変更されないままであることを望みます。
2つの注釈に分割しても問題がない場合は、次のようにします。
annotate("text", x = 4, y = 25, label = "This should be bold",
colour = "red", fontface =2)+
annotate("text", x = 4, y = 24, label = "and this not",
colour = "red")