簡體   English   中英

如何使用 facet_wrap 或 facet_grid 刻面 plot?

[英]How to facet a plot using facet_wrap or facet_grid?

我有一個包含 4 列(year、high_yield、us_bond、us_stock)的數據框(稱為“dat”),我想創建一個方面 plot 來顯示三種投資方法(high_yield 、us_bond 和 us_stock)。 我能做些什么?

   year high_yield  us_bond us_stock
1     0   1000.000 1000.000 1000.000
2     1   1220.586 1281.926 1283.605
3     2   1450.444 1520.894 1215.798
4     3   1692.547 1717.119 1745.844
5     4   1943.387 1986.865 2541.729
6     5   2208.077 2311.152 2144.041
7     6   2485.897 2462.264 2550.917
8     7   2777.211 2882.419 3264.006
9     8   3082.773 3081.522 2653.898
10    9   3392.857 3740.678 3421.683
11   10   3723.774 3916.913 3910.493

您可以使用以下代碼來完成此操作

library(data.table)

df=data.frame(year=seq(0,10,1), high_yield=c(1000.000, 1220.586, 1450.444, 1692.547, 1943.387, 2208.077, 2485.897, 2777.211, 3082.773,3392.857,3723.774),
              us_bond=c(1000.000, 1220.586, 1450.444, 1692.547, 1943.387, 2208.077, 2485.897, 2777.211, 3082.773, 3392.857, 3723.774),
              us_stock=c(1000.000, 1220.586, 1450.444, 1692.547, 1943.387, 2208.077, 2485.897, 2777.211, 3082.773, 3392.857, 3723.774))

df.m = melt(df, id.vars = c("year"),
             measure.vars = c("high_yield", "us_bond", "us_stock"))              

library(ggplot2)
bp <- ggplot(df.m, aes(x=year, y=value, group=variable)) + 
  geom_line(color = "steelblue",size = 1)

bp + facet_grid( .~ variable, scales='free') + 
geom_point(color="steelblue") + 
labs(y = "Value of investment", x = "Year")

在此處輸入圖像描述

我對 high_yield、us_bond 和 us_stock 使用了相同的數據集。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM