Search found 1 match

by amoretti
Wed Jul 08, 2020 1:53 pm
Forum: R2MLwiN user forum
Topic: Multivariate Models: mixture y1: Normal and y2: Poisson
Replies: 1
Views: 14093

Multivariate Models: mixture y1: Normal and y2: Poisson

Hello everyone,

I want to estimate a multilevel mixed type model: y1 is Normal and y2 is Poisson.

I’m using the following code:

model= c(y1, log(y2)) ~ 1 + x1 + (1 | group) + (1[1] | idn )
mymodel3 <- runMLwiN( model, D = c("Mixed", "Normal", "Poisson"),
estoptions = list(EstM = 0, resi.store ...