Search found 1366 matches

by ChrisCharlton
Tue Apr 09, 2013 10:31 am
Forum: Realcom user forum
Topic: Don't have MLWin
Replies: 14
Views: 42082

Re: Don't have MLWin

Realcom assumes that the data is tab delimited and that the first three lines don't have extra tabs. If you are familiar with Matlab the data is read in as follows:


[a]=importdata(Inputfile, '\t', 4);
eval(['c_nimpute=' a.textdata{1}]);
eval(['c_naux=' a.textdata{2}]);
eval(['c_vartype=[' a ...
by ChrisCharlton
Mon Apr 08, 2013 3:14 pm
Forum: Realcom user forum
Topic: Don't have MLWin
Replies: 14
Views: 42082

Re: Don't have MLWin

I am not sure why it would only apply the change to one variable, it's possible that there is a bug. Could you check whether it works okay if you replace the 9999 values with the default missing value before importing the data?
by ChrisCharlton
Tue Apr 02, 2013 4:52 pm
Forum: Realcom user forum
Topic: Don't have MLWin
Replies: 14
Views: 42082

Re: Don't have MLWin

In that case I think that we will need to see an example of the files that you have having trouble with. If you could send this to Professor Goldstein (contact details here: http://www.bris.ac.uk/cmm/team/hg/) then he should be able to check this next week.
by ChrisCharlton
Mon Apr 01, 2013 9:10 pm
Forum: Realcom user forum
Topic: Don't have MLWin
Replies: 14
Views: 42082

Re: Don't have MLWin

Like MLwiN, Realcom-Impute determines the number of level-2 units by the number of times that the code changes within the ID variable. This means that the data will need to be sorted by this ID before importing it. If it isn't sorted then you will see more units than you expect, so this may explain ...
by ChrisCharlton
Fri Mar 29, 2013 6:33 pm
Forum: Realcom user forum
Topic: Don't have MLWin
Replies: 14
Views: 42082

Re: Don't have MLWin

If you have access to Stata then you will probably find it easiest to use the realcom-impute Stata package (see http://missingdata.lshtm.ac.uk/index.php?option=com_content&view=article&id=50&Itemid=102 ).

If not then you will need to generate an input (text) file that matches the specification ...
by ChrisCharlton
Wed Mar 27, 2013 11:07 am
Forum: MLwiN user forum
Topic: Creating a level 2 variable from level 1 data
Replies: 1
Views: 5014

Re: Creating a level 2 variable from level 1 data

There may be better ways to do this, but here is one way that I believe you can achieve what you want (This assumes c100 to c103 are free in your worksheet, if not then substitute columns that are):

1) Create a zero/one variable indicating whether the record has the required characteristic. This ...
by ChrisCharlton
Mon Mar 18, 2013 12:34 pm
Forum: Realcom user forum
Topic: Errors in REALCOM-IMPUTE -- NaN, Empty Matrix
Replies: 1
Views: 11050

Re: Errors in REALCOM-IMPUTE -- NaN, Empty Matrix

Would it be possible for you to send the files that you are having problems with to Professor Goldstein (contact details here: http://www.bris.ac.uk/cmm/team/hg/) and he will try to determine what the problem is?
by ChrisCharlton
Mon Mar 04, 2013 2:47 pm
Forum: Realcom user forum
Topic: multiple questions
Replies: 4
Views: 17814

Re: multiple questions

The number of cases displayed in the equations window (and the hierarchy viewer) is based on the data currently loaded into memory. During the imputation analysis run this is replaced by each of your imputed datasets and the combined results are put into C1096...C1099 so that they appear in the ...
by ChrisCharlton
Thu Feb 21, 2013 9:39 am
Forum: MLwiN user forum
Topic: same categories appearing multiple times in tabulation
Replies: 3
Views: 9196

Re: same categories appearing multiple times in tabulation

Assuming that the values of the variable are integer and that the categories are only defined once each (you can check this with the view categories button in the names window) then this sounds like a bug. Would it be possible for you to send me some example data, along with information on the ...
by ChrisCharlton
Wed Feb 20, 2013 9:54 am
Forum: MLwiN user forum
Topic: same categories appearing multiple times in tabulation
Replies: 3
Views: 9196

Re: same categories appearing multiple times in tabulation

Are you using the most recent version of MLwiN? The tabulate command was originally written for mln, which was a text based application limited to 80 columns of text per line. Because of this any output which was longer than this had to be wrapped around onto the line below. This should have been ...