作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用以下代码将 geom_smooth()
添加到 qplot()
:
library(ggplot2)
library(ggplot2movies)
qplot(votes, rating, data = movies) + geom_smooth()
但是,情节中缺少平滑器。我还收到以下警告消息:
Computation failed in
stat_smooth()
: object 'C_crspl' not found
有人知道这里出了什么问题吗?
这是我的设置:
> sessionInfo()
R version 3.4.1 (2017-06-30)
Platform: x86_64-pc-linux-gnu (64-bit)
Running under: Ubuntu 16.04.1 LTS
最佳答案
我有类似的问题:
# `geom_smooth()` using method = 'gam' and formula 'y ~ s(x, bs = "cs")'
# Warning message:
# Computation failed in `stat_smooth()`:
# object 'C_crspl' not found
和
# Warning message:
# Computation failed in `stat_smooth()`:
# object 'C_magic' not found
使用geom_smooth(method="gam")
时。当我显式加载 mgcv
包版本 1.8-17
时,问题消失了。我想默认情况下,ggplot(我使用2.2.1.9000
)会查看1.8-16
,它也在搜索路径中。因此,您可能需要更新 mgcv
或确保使用最新版本。
关于r - `stat_smooth()` : object 'C_crspl' not found 计算失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45640913/
我正在尝试使用以下代码将 geom_smooth() 添加到 qplot() : library(ggplot2) library(ggplot2movies) qplot(votes, rating
我是一名优秀的程序员,十分优秀!