Suppress warning
Posted: Wed Nov 16, 2016 2:47 pm
Hey there,
I'm sorry to bother again. Estimating this model:
I get the warning that
While this of course does not pose any estimation problems, the warning is problematic in my case for I am conducting a simulation study and have to run the model 1000 times. Is there any way to suppress or redress this warning?
Kind regards,
Benjamin
I'm sorry to bother again. Estimating this model:
Code: Select all
fit <- runMLwiN(y ~ 1 + cx + gx + (1 | id_c) + (1 | p) + (1 | id_g),
D = "Normal", data = data.wide,
estoptions = list(EstM = 1, debugmode = F, mm = list(NA, list(mmvar = list("p", "p2", "p3", "p4"), weights = list("w1", "w2", "w3", "w4")), NA)))
That cannot possible be as I round the data before:Some input variable held data in more precision than MLwiN supports, these have been rounded
Code: Select all
data.wide <- round(data.wide, 1)
Kind regards,
Benjamin