gpt4 book ai didi

r - ggplot2: "Unknown parameters: probs"for fun.y = geom_line() 中的分位数

转载 作者:行者123 更新时间:2023-12-03 01:26:32 25 4
gpt4 key购买 nike

以下用于绘制 10% 分位数线的代码会产生错误“未知参数:概率”。有谁知道为什么吗?

ggplot(aes(y = mpg, x = cyl), data = mtcars) + 
geom_point(color = "orange") +
geom_line(stat = 'summary', fun.y = quantile, probs = 0.1)

我已更新到最新版本的 ggplot 并使用以下 R 版本:

R.Version()

$platform
[1] "x86_64-w64-mingw32"

$arch
[1] "x86_64"

$os
[1] "mingw32"

$system
[1] "x86_64, mingw32"

$status
[1] ""

$major
[1] "3"

$minor
[1] "2.0"

$year
[1] "2015"

$month
[1] "04"

$day
[1] "16"

$svn rev
[1] "68180"

$language
[1] "R"

$version.string
[1] "R version 3.2.0 (2015-04-16)"

$nickname
[1] "Full of Ingredients"

最佳答案

我花了一些时间挖掘 ggplot2 2.0-helpfiles。对于本例,它们是 here 。在新版本中,有一个参数fun.args。因此,我能够使用更新版本的 ggplot 运行此代码并生成所需的绘图:

ggplot(aes(y = mpg, x = cyl), data = mtcars) + 
geom_point(color = "orange") +
geom_line(stat = 'summary', fun.y = "quantile", fun.args=list(probs=0.1))

关于r - ggplot2: "Unknown parameters: probs"for fun.y = geom_line() 中的分位数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34578887/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com