gpt4 book ai didi

r - 如何排列从 for 循环创建的 ggplots

转载 作者:行者123 更新时间:2023-12-02 09:14:02 24 4
gpt4 key购买 nike

我有以下 df(仅示例)

>ts_data_1
Month drepo drevrepo dbankrate dCRR dCallrate dWPI dGDP dFED dwidth
2001-05-01 2001-05-01 -0.25 -0.25 0.0 -0.50 0.54 0.19 0.0 -0.50 0
2001-06-01 2001-06-01 -0.25 0.00 0.0 0.00 -0.79 -0.30 0.0 -0.25 -25
2001-07-01 2001-07-01 0.00 0.00 0.0 0.00 -0.05 -0.07 0.7 0.00 0
2001-08-01 2001-08-01 0.00 0.00 0.0 0.00 -0.25 0.18 0.0 -0.25 0
2001-09-01 2001-09-01 0.00 0.00 0.0 0.00 0.36 -0.89 0.0 -0.50 0
2001-10-01 2001-10-01 0.00 0.00 -0.5 0.00 0.10 -1.61 1.5 -0.50 0
2001-11-01 2001-11-01 0.00 0.00 0.0 -1.75 -0.43 -0.32 0.0 -0.50 0
2001-12-01 2001-12-01 0.00 0.00 0.0 -0.25 0.11 -0.51 0.0 -0.25 0
2002-01-01 2002-01-01 0.00 0.00 0.0 0.00 -0.45 -0.57 -0.4 0.00 0
2002-02-01 2002-02-01 0.00 0.00 0.0 0.00 0.10 -0.12 0.0 0.00 0
dnse dusd
2001-05-01 42.65 0.13352941
2001-06-01 -60.00 0.08450000
2001-07-01 -35.05 0.13731818
2001-08-01 -19.10 -0.01481818
2001-09-01 -139.90 0.51900000
2001-10-01 58.05 0.37447619
2001-11-01 95.25 -0.02310777
2001-12-01 -8.10 -0.07473684
2002-01-01 16.35 0.39258581
2002-02-01 66.65 0.37628261

我运行了一个 for 循环来逐一绘制所有时间序列:

for(i in tail(colnames(ts_data_1), -1)){
gg <- ggplot(ts_data_1, aes_string(x = "Month", y = i)) +
geom_line(size=1.05,colour="#0072B2") + scale_x_date(date_breaks = "2 year",date_labels = "%Y")+ xlab('\nYear') + ggtitle(paste(i,"(Differenced Timeseries)\n")) + theme_bw()
print(gg)
}

这绘制了一张图在另一张下方。我正在寻找一种方法来在单个图框中以 2 列的网格形式绘制所有内容。已经查看了 cowplot 包的 grid.arrange 和 plot_grid fn,但无法使其在循环中工作。在这里需要帮助!

PS:重现性数据

ts_data_1<-structure(list(Month = structure(c(11443, 11474, 11504, 11535, 
11566, 11596, 11627, 11657, 11688, 11719), class = "Date"), drepo = c(-0.25,
-0.25, 0, 0, 0, 0, 0, 0, 0, 0), drevrepo = c(-0.25, 0, 0, 0,
0, 0, 0, 0, 0, 0), dbankrate = c(0, 0, 0, 0, 0, -0.5, 0, 0, 0,
0), dCRR = c(-0.5, 0, 0, 0, 0, 0, -1.75, -0.25, 0, 0), dCallrate = c(0.539999999999999,
-0.789999999999999, -0.0499999999999998, -0.25, 0.359999999999999,
0.100000000000001, -0.430000000000001, 0.11, -0.45, 0.100000000000001
), dWPI = c(0.19, -0.3, -0.0699999999999994, 0.18, -0.890000000000001,
-1.61, -0.32, -0.51, -0.57, -0.12), dGDP = c(0, 0, 0.7, 0, 0,
1.5, 0, 0, -0.399999999999999, 0), dFED = c(-0.5, -0.25, 0, -0.25,
-0.5, -0.5, -0.5, -0.25, 0, 0), dwidth = c(0L, -25L, 0L, 0L,
0L, 0L, 0L, 0L, 0L, 0L), dnse = c(42.6500000000001, -60, -35.0500000000002,
-19.0999999999999, -139.9, 58.05, 95.2500000000001, -8.10000000000014,
16.3500000000001, 66.6499999999999), dusd = c(0.133529411764705,
0.0844999999999985, 0.137318181818202, -0.0148181818181996, 0.518999999999998,
0.374476190476202, -0.0231077694236035, -0.0747368421051959,
0.392585812356998, 0.376282608695597)), .Names = c("Month", "drepo",
"drevrepo", "dbankrate", "dCRR", "dCallrate", "dWPI", "dGDP",
"dFED", "dwidth", "dnse", "dusd"), row.names = c("2001-05-01",
"2001-06-01", "2001-07-01", "2001-08-01", "2001-09-01", "2001-10-01",
"2001-11-01", "2001-12-01", "2002-01-01", "2002-02-01"), class = "data.frame")

最佳答案

如果将数据转换为 long format,任务会变得更容易首先,例如,使用 tidyr 包中的 gather

然后您可以执行以下操作。

在单独的方面绘制每一列

require(ggplot2)
require(tidyr)

data %>%
gather(variable,value,-Month) %>%
ggplot(aes(x=Month,y=value)) + facet_wrap(~variable) + geom_line()

faced plot

如果您希望所有绘图都有自己的 y 尺度,则将 scales="free_y" 添加到对 facet_wrap 的调用中:

ts_data_1 %>% 
gather(variable, value, -Month) %>%
ggplot(aes(x=Month,y=value)) + geom_line() + facet_wrap(~variable,scales="free_y")

faceted plot with free y scales

在单个图中对所有列进行颜色编码

data %>%
gather(variable,value,-Month) %>%
ggplot(aes(x=Month,y=value,color=variable)) + geom_line()

enter image description here

关于r - 如何排列从 for 循环创建的 ggplots,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48842011/

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