标签: r time-series boxplot
我在R中有时间序列对象,其中包含从1949年至1960年每个月的AirPassenger预订值。使用命令boxplot(AP ~ cycle(AP))按月分组的容易绘图框图。如果我们必须按年分组,我想知道如何制作盒子图。
boxplot(AP ~ cycle(AP))
答案 0 :(得分:1)
让您入门的示例代码:
ap <- data.frame(AirPassengers) year <- rep(seq(1949,1960), rep(12,12)) boxplot(ap$AirPassengers~year)