次のようなデータフレームがあります。
str(Data)
'data.frame': 11520 obs. of 29 variables:
$ groupname : Factor w/ 8 levels "Control","Treatment1",..: 1 1 1 1 1 1 1 1 1 1 ...
$ fCycle : Factor w/ 2 levels "Dark","Light": 2 2 2 2 2 2 2 2 2 2 ...
$ totdist : num 0 67.5 89.8 109.1 58.3 ...
#etc.
次のように、Treatment1とControlの単一のプロットを実行できます。
qq(groupname~totdist|fCycle, data=Data,
subset=(groupname=='Control'|groupname=='Treatment1'))
次のようになります。
Treatment2とControl...TreatmentXとControlの同様のプロットを自動的に作成したいと思います。これはループの場所ですか、それともラティスの方が良い方法ですか?