web-dev-qa-db-ja.com

注釈で異なるフォントスタイルを使用する(ggplot2)

以下のコードを使用して、いくつかの注釈付きの簡単なグラフを生成しています。

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")

Simple plot

そのチャートでは、テキスト注釈のフレーズの最初の部分に太字フォントを適用したいと思います。

これは太字にする必要があります

しかし、私はテキストの残りの部分がフォントフェイスとスタイルに関して変更されないままであることを望みます。

22
Konrad

plotmath構文とparse = TRUE

ggplot(mtcars, aes(x = wt, y = mpg)) + 
    geom_point() +
    annotate("text", x = 4, y = 25, 
            label = 'atop(bold("This should be bold"),"this should not")',
            colour = "red", parse = TRUE) +
    geom_vline(xintercept = 3.2, colour = "red")

enter image description here

20
aosmith

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")
30
Rottmann