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 回答