我的问题与此类似: Plotting bar plot below xyplot with same x-axis? ,但对于 lattice 包而不是 ggplot。
我有 21 个 xyplots,都具有相同的 x 轴刻度,但不同的 y 轴刻度。我想用只有 1 个 x 轴但 21 个不同的 y 轴比例(每行一行)绘制所有 21 条线。我几乎在这里:,但是每个面板上打印的冗余 x 轴使这个数字变得荒谬。我的脚本:
xyplot(numhr~year | spp, xlab = "Time(years)",
ylab = "Abundance (# per party hr)", type = "l", aspect = "fill",
strip = FALSE, scales = list(relation = "free"), as.table = TRUE,
layout = c(1,21), xlim = c(1940,2010))
有什么帮助吗?
〜凯文