Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使用 lattice 限制单个页面上显示的面板数量?我正在绘制多个状态的回归结果,并将其中的 50 个放在一个页面上会使它们不可读。我想将输出限制为 4 宽和尽可能多的高。
这是我的格子代码:
xyplot(Predicted_value + Actual_value ~ x_value | State_CD, data=dd)
State_CD 有 50 个不同的值
看看layout参数。
layout
也许你想要类似的东西:
xyplot(Predicted_value + Actual_value ~ x_value | State_CD, data=dd, layout = c(4,5))