
RENAME VARIABLE (srec=!CONCAT(!stem,!cnt)). RENAME VARIABLE (!CONCAT(!stem,!cnt)=srec).ĪPPLY DICTIONARY FROM='c:\temp\label definitions.sav'. SAVE OUTFILE='c:\temp\label definitions.sav'. XSAVE OUTFILE='c:\temp\data1.sav' /KEEP=id cnt s. Defining a variable includes giving it a name, specifying its type, the values the variable can take (e.g., 1, 2, 3), etc.Without this information, your data will be much harder to understand and use. VECTOR s=!CONCAT(!stem,'1') TO !CONCAT(!stem,!nb).

SAVE OUTFILE='c:\temp\original data.sav'. DEFINE !apply (stem=!TOKENS(1) /nb=!TOKENS(1))

DATA LIST LIST /id (F1.0) str1 str2 str3 str4 str5 (5A1).īEGIN DATA 1 a b c d e 2 b d e 3 c c a c b 4 e c a 5 e b a 6 a b END DATA. procedure to carry out a two-way mixed ANOVA, go to the Interpreting Results section. Now that you have run the General Linear Model > Repeated Measures. * Do you know an easy way to do this? So that I get this result: ID STR1 STR2 STR3 STR4 STRX 1 1 2 3 4 5 2 2 4 5 3 3 3 1 3 2 3 5 3 1 2 5 2 1 1 1 2 "a"=1, "b"=2, "c"=3, "d"=4, "e"=5 *(A) By Raymald Levesque 6. Click on the button and you will be returned to the Repeated Measures dialogue box. * What I need is one dictionary for all of my variables.

* No variable has all strings, but all variables together have all strings which can appear. * ID STR1 STR2 STR3 STR4 STRX 1 a b c d e 2 b d e 3 c c a c b 3 e c a 2 e b a 1 a b * and would like to use all of these string variables to do one autorecode, let's say something like an autorecode overall.
