Info
La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.
Correct form of a GLME equation
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
I'm trying to fit a Poisson Generalized Mixed Model of an LDA analysis of topics in a corpus.
I have a table (glmeVars) with three variables: year, topic (1:25), docs (#ofDocs published for said topic in said year).
I want to determine topic popularity through time by fitting a Poisson GLME with random intercept (mean #ofDocs) and slope (rate of change in #ofDocs across years).
Is this the correct form?
model = fitglme(glmeVars, 'docs ~ topic + (topic | year)', 'Distribution','Poisson', 'verbose', 0, 'StartMethod', 'random');
Secondly, how do I extract the intercept and slope for each topic probability line through time?
Thanks
0 comentarios
Respuestas (0)
La pregunta está cerrada.
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!