Lazy Pseudo Statistician Looking for Computer To Do Work For Him
March 17, 2009 8:05 PM
Subscribe
How can I take a Myers-Briggs test entered into SPSS in a per question format and get a Myers-Briggs Type for each of 92 participants?
I've tried Google and am getting nothing. I downloaded a trial so I can work on it at home while I'm on Spring Break, and the Help files didn't install or something to where the end result is that I can't use them. I'm also kicking myself for not getting my text back after letting someone borrow it for my school's stats class.
I have 92 surveys, part of which is a Myers-Briggs Personality Test. I've entered the data on a question by question basis, where each of the 20 Myers-Briggs questions has an option value of either 1 or 2 (representing E or I, S or N, T or F, or J or P depending on the question).
I know I can get a frequency to get the personality type of the entire sample population. But how can get SPSS to score he Myers-Briggs for me on a survey by survey basis?
If it would be easier, I also have the surveys available and can go score them all by hand. But I'd rather not to that if I don't have to.
posted by theichibun to computers & internet (5 comments total)
If that's the case, the answer is simple. You can be old fashoned and open a new syntax window and use the COMPUTE and IF statements.
If I understand what you're describing, it sounds like you need to create totals based on which option (1 or 2) is chosen for each item. If, for example, an Item1 score of 1 means to bump up the E scale, while a score of 2 on that item means to bump up the I scale, you'd write syntax like this:
COMPUTE E = 0.
COMPUTE I = 0.
DO IF (ITEM1 = 1).
COMPUTE E=E+1.
ELSE IF (ITEM1=2).
COMPUTE I=I+1.
END IF.
EXECUTE.
The first two statements just initialize your scales at 0. The EXECUTE statement is needed at the end the syntax, and periods are needed after each statement. You just highlight the statements and click on the Run button. There are many tutorials on the web that can help you learn how to use SPSS syntax.
posted by jasper411 at 8:45 PM on March 17