Search found 1342 matches

by ChrisCharlton
Tue Jul 19, 2022 12:31 pm
Forum: runmlwin user forum
Topic: svyset compatibility with runmlwin
Replies: 1
Views: 7655

Re: svyset compatibility with runmlwin

I asked George about this and he suggested that the weighting options in MLwiN might do what you want. Unfortunately we don't provide much documentation for this, but you can see how to specify them by looking at the options in the runmlwin help file, i.e.

Code: Select all

help runmlwin
by ChrisCharlton
Mon Jul 04, 2022 2:36 pm
Forum: MLwiN user forum
Topic: 2 responses using MLwiN3.01
Replies: 1
Views: 7256

Re: 2 responses using MLwiN3.01

The reason for this is that your have chosen Binomial responses. This response type has a fixed level-1 variance (level-2 in this case as everything is shifted up a level for multivariate responses), which therefore cannot be estimated. If you had fitted a univariate Binomial response you would find...
by ChrisCharlton
Fri Jun 17, 2022 1:51 pm
Forum: MLwiN user forum
Topic: Calculating level-three residuals in multilevel model
Replies: 2
Views: 7530

Re: Calculating level-three residuals in multilevel model

If you are using MLwiN then the residuals returned from the Model>Residuals menu are already shrunken (see chapter 3 of the MLwiN User's Guide ). If you need an unshrunken version then the REFLATE command (see the MLwiN on-line help) is provided to calculate this, and more details of the formula use...
by ChrisCharlton
Tue Jun 14, 2022 11:05 am
Forum: R2MLwiN user forum
Topic: informative priorParam in random slope
Replies: 2
Views: 9138

Re: informative priorParam in random slope

As you state the 'prior variance matrix is not positive definite' message usually occurs when the starting values for the covariance matrix, used as the prior for MCMC, is invalid. Normally this matrix is obtained from the IGLS estimates, however you can specify it manually via the startval option. ...
by ChrisCharlton
Tue Apr 12, 2022 1:14 pm
Forum: runmlwin user forum
Topic: Level 2 unit problem
Replies: 1
Views: 7120

Re: Level 2 unit problem

Although you have checked the sorting, this does look like the sort of behaviour you would get if the data was not sorted by the identifiers defining the unit hierarchy. Can you confirm that the data is sorted by all of these ('n', 'wave_num' and 'wave')? You could also try recoding 'n' to go from 1...
by ChrisCharlton
Thu Mar 10, 2022 9:04 pm
Forum: R2MLwiN user forum
Topic: how to extract credible intervals
Replies: 1
Views: 8006

Re: how to extract credible intervals

For MCMC models the parameter chains are stored in a chains slot of the returned object, in your case this would be modelstim@chains . You can use the functions provided in the coda package to manipulate these, for example: library(coda) summary(modelstim@chains) will list summary statistics for eac...
by ChrisCharlton
Fri Feb 25, 2022 1:41 pm
Forum: runmlwin user forum
Topic: melogit verse runmlwin
Replies: 4
Views: 7808

Re: melogit verse runmlwin

I asked George if he could think of an explanation for this and he suggested running the model with PQL2 instead of MQL1, as MQL1 variances are biased downwards.
by ChrisCharlton
Thu Feb 24, 2022 1:10 pm
Forum: runmlwin user forum
Topic: melogit verse runmlwin
Replies: 4
Views: 7808

Re: melogit verse runmlwin

You should be able to get this to work if you remove the predictors from the level-1 specification, i.e.: generate id = _n runmlwin depression cons age10, level2(mcsid: cons) level1(id:) discrete(distribution(binomial) link(logit) denominator(cons)) nopause You can find examples of this and other mo...
by ChrisCharlton
Mon Feb 21, 2022 4:34 pm
Forum: R2MLwiN user forum
Topic: Saving Level 2 Residuals When Running Multiple Chains
Replies: 2
Views: 6096

Re: Saving Level 2 Residuals When Running Multiple Chains

Thanks for letting us know about this, the error appears to be due to a bug. I have made a fix in the development version of the package which once the r-forge mirror ( https://github.com/r-forge/r2mlwin/tree/master/R2MLwiN ) has synchronised you should be able to install with the commands: library(...
by ChrisCharlton
Mon Feb 14, 2022 2:21 pm
Forum: runmlwin user forum
Topic: MCMC: calculating estimates, CrIs for combinations of terms/interactions
Replies: 7
Views: 10633

Re: MCMC: calculating estimates, CrIs for combinations of terms/interactions

The p-values reported here are one-tailed bayesian p-values, and essentially give the proportion of the chain that crosses zero (or one if the variable is exponentiated and it is aware of this). You can find the code for this in runmlwin_mcmcdiag.ado , and is as follows: local compval 0 if "`ef...