如何在R中的package fitdistrplus中使轴从零开始

时间:2016-07-04 05:42:08

标签: r ggplot2 axes fitdistrplus

我在包fitdist中使用函数fitdistrplus来获得适合我的数据的最佳分布并绘制ppcomp数字,我使用?fitdistrplus的示例代码来替换我的数据和代码。

data(groundbeef)
serving <- groundbeef$serving
fitW <- fitdist(serving, "weibull")
fitg <- fitdist(serving, "gamma")
fitln <- fitdist(serving, "lnorm")
ppcomp(list(fitW, fitg, fitln), legendtext=c("Weibull", "gamma", "lognormal"))

ppcomp

到目前为止一切顺利!但是看看图片的左下角,有一些空间,或者轴不是从零开始的!

所以我用Google搜索并找到两种方法: 使用基础图中的一种方法xaxsyaxs

set.seed(1234)
x <- runif(100, min=0, max=100)
y <- runif(100, min=0, max=100)
plot(x,y,xaxs="i",yaxs="i",xlim=c(0,100),ylim=c(0,100))

base plot

使用了ggplot2expand=c(0,0)中的另一种方法。

df <- data.frame(x=x,y=y)
ggplot(df,aes(x,y)) + geom_point() + scale_x_continuous(expand = c(0,0)) + scale_y_continuous(expand = c(0,0))

expand

所以我尝试使用这两种方法来绘制ppcomp数字,

ppcomp(list(fitW, fitg, fitln), legendtext=c("Weibull", "gamma", "lognormal"),xaxs="i",yaxs="i")

但发生错误:

Error in legend(x = xlegend, y = ylegend, bty = "n", legend = legendtext,  : 
  unused arguments (xaxs = "i", yaxs = "i")

那么,我应该怎么做才能在没有错误的情况下完成目标,或者什么是正确的代码?

1 个答案:

答案 0 :(得分:1)

问题似乎是...(接受额外参数)中的ppcomp参数被赋予plotlegend以及legend不知道如何处理xaxs

选项包括:

1)使用ppcomp运行xaxs,这将生成图表,然后单独添加legend

2)使用fix(ppcomp)...命令中删除legend

3)重新编码ppcomp以使用ggplot并根据需要设置选项。