- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这两个函数有什么区别
plot(AP,xlab="Date", ylab = "Passenger numbers (1000's)",main="Air Passenger numbers from 1949 to 1961")
autoplot(AP) + labs(x ="Date", y = "Passenger numbers (1000's)", title="Air Passengers from 1949 to 1961")
最佳答案
从图形数据表示的角度来看,graphics::plot
和 ggplot2::autoplot
+ ggfortify
没有太大区别时间序列绘图包。如果您开始绘制更复杂的图(分面、多图、分组等),差异将很明显。至于你的问题,请看下面:
图形::绘图:
data(AirPassengers)
AP <- AirPassengers
plot(AP, xlab="Date", ylab = "Passenger numbers (1000's)", main = "Air Passenger data, base")
ggplot2::autoplot:
library(ggplot2)
library(ggfortify)
data(AirPassengers)
AP <- AirPassengers
autoplot(AP) +
labs(x ="Date", y = "Passenger numbers (1000's)", title = "Air Passengers from, ggplot2")
关于r - R中的autoplot函数和plot函数有什么区别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52398933/
以下代码工作正常: library(ggfortify) autoplot(lm(Petal.Width ~ Petal.Length, data = iris), label.size = 3) 然
我希望能够调整加载标签的位置,以便它们不会落在箭头上方。但不知道哪里需要调整。 geom_text 可用于调整站点位置的位置,但我找不到矢量存储在 str(g) 中的位置。 library(ggplo
根据文档,microbenchmark:::autoplot“使用 ggplot2 生成更清晰的微基准计时图表。” 酷!让我们尝试一下示例代码: library("ggplot2") tm 答案越长
我正在使用自动绘图为回归模型绘制诊断图。我想为图表添加一个通用的单一标题。 例如: library(ggfortify) autoplot(lm(Petal.Width ~ Petal.Length,
我正在创建一个 ts 对象,然后尝试通过自动绘图运行它。执行给我一个错误: autoplot(pts, facets = TRUE) Error: Objects of type mts/ts/mat
我有一个包含 2285 个观测值的数据集“bc”,两个变量:“日期”和“价格”。 'data.frame': 2285 obs. of 2 variables: $ Date : Date,
我用 autoplot() 制作了一个 PCA 图,但我想只在其中 2 个组周围有椭圆,而不是所有 3 个组。因此我切换到 ggplot。但是,我的轴在 autoplot 和 ggplot 方法之间似
我正在尝试使用 ggfortify 来可视化我使用 prcomp 所做的 PCA 结果。 示例代码: iris.pca <- iris[c(1, 2, 3, 4)] autoplot(prcomp(i
我正在使用 mlr3 包,我想绘制不同模型的 ROC 曲线。如果我按照 documentation 中的说明使用交叉验证它工作得很好,但是如果我使用“holdout”进行重采样,那么我会得到一个错误
我在 Shiny 的应用程序中使用函数 ggplot2::autoplot 和一个 lm 对象。 这要归功于 ggfortify 包。 在我 Shiny 的应用程序中,我还使用了 shinyjs。 在
我正在尝试向 survMisc 生成的生存图添加额外的行,但是我无法让它工作 - 问题是最后一行。 data(kidney, package="KMsurv") s1 <- survfit(Surv(
我在 Shiny 的应用程序中使用函数 ggplot2::autoplot 和一个 lm 对象。 这要归功于 ggfortify 包。 在我 Shiny 的应用程序中,我还使用了 shinyjs。 在
我有一个 data.table有一列有一些值的预测,我想用 ggplot2::autoplot 保存每个预测的图. 我正在尝试这个(可重复的例子): require(data.table) requi
我是一名优秀的程序员,十分优秀!