15

R 2.15 にアップグレードして以来、フォーマッター引数がエラーをスローしているようです。これは私が2年間毎日使ってきた議論だったので、非常に残念です.

R バージョン 2.15.0 (2012-03-30)

ggplot2 バージョン 0.9.0

> library(ggplot2)
> x <- 1:100
> y <- 1/x
> p <- qplot(x,y)
> p + scale_y_continuous(formatter = "percent")
Error in continuous_scale(c("y", "ymin", "ymax", "yend", "yintercept",  : 
  unused argument(s) (formatter = "percent")
4

1 に答える 1

20

バージョン 0.9.0 で構文が変更されました。こちらの移行ガイドを参照してください: https://github.com/downloads/hadley/ggplot2/guide-col.pdf

library(ggplot2)
library(scales)
x <- 1:100
y <- 1/x
p <- qplot(x,y) + scale_y_continuous(labels  = percent)
于 2012-04-13T18:23:00.427 に答える