12

ggplotのバーの上にラベルを配置する必要があります。以前は見つかったメソッド(ここ)を使用していましたが、 ggplot2が更新されてから、エラーメッセージが表示されるため、これは機能しなくなったようです。

Error in continuous_scale(c("y", "ymin", "ymax", "yend", "yintercept",  : 
  unused argument(s) (formatter = "percent")

例を使用するときに、バーの上に数値を再度プロットするにはどうすればよいですか?

df <- structure(list(A = structure(c(1L, 1L, 1L, 2L, 2L, 2L, 3L, 3L,
3L), .Label = c("0-50,000", "50,001-250,000", "250,001-Over"), class = "factor"),
    B = structure(c(1L, 2L, 3L, 1L, 2L, 3L, 1L, 2L, 3L), .Label = c("0-50,000",
    "50,001-250,000", "250,001-Over"), class = "factor"), Freq = c(0.507713884992987,
    0.258064516129032, 0.23422159887798, 0.168539325842697, 0.525280898876405,
    0.306179775280899, 0.160958904109589, 0.243150684931507,
    0.595890410958904)), .Names = c("A", "B", "Freq"), class = "data.frame", row.names = c(NA,
-9L))

library(ggplot2)

ggplot(data=df, aes(x=A, y=Freq))+
    geom_bar(aes(fill=B), position = position_dodge()) + 
    geom_text(aes(label = paste(sprintf("%.1f", Freq*100), "%", sep=""),
                  y = Freq+0.015, x=A),
              size = 3, position = position_dodge(width=0.9)) +
    scale_y_continuous(formatter = "percent") +
    theme_bw()

Win7マシンでR2.15ggplot20.9を実行する

4

1 に答える 1

18

エラーはscale_y_continuous呼び出しによるものです。ラベルのフォーマットは、labels引数によって処理されるようになりました。詳細については、ggplot20.9.0移行ガイドを参照してください。

ラベルが正しく整列しないという別の問題がありました。;group=Bの美学にを追加することでそれを修正しました。geom_textしかし、なぜこれが必要なのかはよくわかりません。私もそれが必要でなかったので美学から取り出しました(それは呼び出しから継承されるx=Aでしょう。geom_textggplot

library("ggplot2")
library("scales")

ggplot(data=df, aes(x=A, y=Freq))+
    geom_bar(aes(fill=B), position = position_dodge()) + 
    geom_text(aes(label = paste(sprintf("%.1f", Freq*100), "%", sep=""),
                  y = Freq+0.015, group=B),
              size = 3, position = position_dodge(width=0.9)) +
    scale_y_continuous(labels = percent) +
    theme_bw()

ここに画像の説明を入力してください

于 2012-04-11T20:31:31.827 に答える