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.
ラティスを使用して 1 ページに表示されるパネルの数を制限するにはどうすればよいですか? 複数の州の回帰の結果をグラフにしていますが、これらの 50 を 1 ページに配置すると、それらが判読できなくなります。出力を幅 4、高さ 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))