Displaying 1 result from an estimated 1 matches for "resultr".
Did you mean:
result
2008 Jan 15
1
bug in mmlcr ? (PR#10576)
...list.
Is there a bug in mmlcr package ?
The following code does not compile:
mmlcrTest <- function(dataW){
dataL <-
reshape(dataW,idvar="id",timevar="T",varying=list("T0","T1","T2"),direction="long",v.names="score")
resultR <- mmlcr(outer= ~ 1 | id,
components = list(list(formula = score~1+T,class=
"normlong")), n.groups=3,
data=dataL,
max.iter=500
)
plot(resultR)
}
mmlcrTest(dataW)
The error is (transla...