我正在嘗試從格子包中製作一個水平圖(也顯示輪廓線)。我有幾個問題(如下所述)。 邁德特: https://www.dropbox.com/s/ht55g0qlkiou2x2/growth.matrix.stackoverflow.xlsx require(lattice)
require(latticeExtra)
require(xlsx)
#matrix to be plotted
我的數據框有很多列。我希望在許多這些列上執行單獨但類似的xyplot()調用,而無需複製冗長的xyplot()調用。我試過編寫一個函數來做到這一點,但是lattice似乎並不接受文本參數作爲條件變量。複製xyplot調用使我的代碼變得笨重。有任何想法嗎? df=data.frame(ts=c(1:100),x=runif(100),y=3,z=rnorm(100))
# This is the
大廈Passing conditioning variables to xyplot in a function in lattice,我想知道如何通過「羣體」與函數調用。使用公式()似乎不起作用,就像它爲其他條件變量所做的那樣。 df=data.frame(ts=c(1:100), x=runif(100), y=3, g=c("A","B"))
# This is the clunky a