使用R中的汽车包的qqplot的x和y限制

时间:2017-06-14 01:35:25

标签: r plot quantile

我使用R中的汽车包生成了qqplot,但无法调整x和y刻度。该图如下所示:

normal qqplot

我需要炸掉x和y轴来查看它们与置信区间的距离。有办法解决这个问题吗? 汽车包中的qqPlot函数没有参数xlim和ylim Arguments of qqPlot in car package

1 个答案:

答案 0 :(得分:0)

编辑:我的错误。我没有仔细阅读,看到你正在使用汽车包装。在您的问题中添加示例代码将来会很有用。

看起来car :: qqPlot中的轴可能无法调整。根据此答案中的建议(car package to qqplot in R - how to insert the scale of x and y axis),请尝试使用基本函数(stats :: qqplot)。

尝试在qqplot函数中调用xlim和ylim。

以下是使用?qqplot文档中的示例数据的示例:

## data
y <- rt(200, df = 5)

## plot will have x-axis from -4 to 6 and y-axis from -4 to 4
qqplot(y, rt(300, df = 5)) 

## plot will have x-axis from -4 to 2 and y-axis from -4 to 0
qqplot(y, rt(300, df = 5), 
       ylim = c(-4, 0), 
       xlim = c(-4, 2))