0

有没有办法修复色标以使其保持不变,例如在生成多个绘图时?我知道曾经可以使用polarPlot(..., type = "year"),但我不想要图表网格,因为我正在尝试创建动画(我已经在 Github repo 问题下交叉列出了这个问题)。

library(openair)
library(dplyr)
library(lubridate)

polarPlot(filter(mydata, year(date) == 1999),
          pollutant = "nox")

polarPlot(filter(mydata, year(date) == 2004),
          pollutant = "nox")

在此处输入图像描述

4

1 回答 1

0

该软件包的作者建议可以在选项中设置限制,例如limits = c(0, 300)。完整答案:

https://github.com/davidcarslaw/openair/issues/269

于 2021-09-13T17:37:28.443 回答