Search found 1344 matches

by ChrisCharlton
Wed Mar 21, 2012 10:15 am
Forum: runmlwin user forum
Topic: Extracting Standard Error Estimates
Replies: 3
Views: 18896

Re: Extracting Standard Error Estimates

You should be able to calculate this from the variance matrix, e(V). The following is an example of how to do this is: matrix stderr = vecdiag(e(V)) forvalues i = 1/`=colsof(stderr)' { matrix stderr[1,`i'] = sqrt(stderr[1,`i']) } This should give you a matrix with the same dimensions as e(b), but wh...
by ChrisCharlton
Tue Mar 20, 2012 11:34 pm
Forum: Realcom user forum
Topic: realcomImpute error
Replies: 2
Views: 5593

Re: realcomImpute error

From the output that you have provided it looks like it's having a problem in the following section of code: *save file ready for REALCOM to load local stoppos = strpos("`using'",".") if `stoppos'==0 { local savename `using'.txt } else { local savename `using' } file open myFile ...
by ChrisCharlton
Tue Mar 20, 2012 6:51 pm
Forum: runmlwin user forum
Topic: Issue with factor variables
Replies: 2
Views: 5894

Re: Issue with factor variables

Thanks for letting us know about this. You cannot recast __000003 because it is a temporary variable that is only created for the duration that runmlwin is running. We have now added code to ensure that these generated variables are kept to the correct precision for MLwiN in our development version,...
by ChrisCharlton
Tue Mar 20, 2012 6:48 pm
Forum: runmlwin user forum
Topic: runmlwin has encountered an error importing the model...
Replies: 1
Views: 4478

Re: runmlwin has encountered an error importing the model...

You should be able carry on with the loop by either putting a capture in front of the post command so that it carries on with the loop when it fails, or by only calling post when runmlwin succeeds by putting it in an if !c(rc) statement.
by ChrisCharlton
Wed Mar 14, 2012 12:56 pm
Forum: runmlwin user forum
Topic: Pre or post file PRE does not exist & Warning: getversion
Replies: 1
Views: 3730

Re: Pre or post file PRE does not exist & Warning: getversio

Thanks for reporting this, it appears to be a bug. The contents of the global macro and the command option should be stored in a local macro, and then this used within the command. It appears that in some places, such as discrete models, we are using the global macro directly. I will fix this for th...
by ChrisCharlton
Sat Feb 18, 2012 1:24 pm
Forum: MLwiN user forum
Topic: Newbie question: At what level does a covariate operate ?
Replies: 2
Views: 5901

Re: Newbie question: At what level does a covariate operate

MLwiN works out that it is a level 2 variable from the fact that its value is constant within each level 2 identifier. This can be demostrated by modifying the data prior to adding the variable to the model so that this is no longer the case. If you do this the subscript will then be ij instead of j.
by ChrisCharlton
Thu Feb 16, 2012 1:19 pm
Forum: runmlwin user forum
Topic: runmlwin and Linux?
Replies: 12
Views: 17316

Re: runmlwin and Linux?

Since your initial post we have done some testing and as a result have updated the FAQ on running MLwiN on non-Windows systems ( http://www.bristol.ac.uk/cmm/software/mlwin/features/sysreq.html#unix ). Once we have a package that is confirmed to work we also intend to provide an FAQ on using runmlwi...
by ChrisCharlton
Tue Feb 07, 2012 1:20 pm
Forum: runmlwin user forum
Topic: switching stata output off; saving regression results
Replies: 3
Views: 7253

Re: switching stata output off; saving regression results

You can prevent Stata giving a 'more' prompt with the command: set more off For more information see http://www.stata.com/help.cgi?more . You can turn off the output from runmlwin by either prefixing it with quietly (see http://www.stata.com/help.cgi?quietly ), or you can turn off individual parts w...
by ChrisCharlton
Mon Feb 06, 2012 10:27 am
Forum: runmlwin user forum
Topic: runmlwin and Linux?
Replies: 12
Views: 17316

Re: runmlwin and Linux?

We have not had any reports of MLwiN working under Wine before, which is why we haven't created versions of the plugin for Linux or Mac. I would be very interested in hearing how well it runs in this environment. If runmlwin is unable to find a particular plugin it should be able to fall back to eit...
by ChrisCharlton
Wed Feb 01, 2012 12:45 pm
Forum: runmlwin user forum
Topic: Order of variables?
Replies: 3
Views: 5319

Re: Order of variables?

One possible reason for this behaviour is that the two models are converging from different directions and are considered to have converged before reaching exactly the same point. The default tolerance in MLwiN (and runmlwin) is 10e-2, which corresponds to a 1% change in the value of the estimate fr...