In SPSS, I am attempting to use quartiles values of multiple variables to compute and form their respective new variables. E.g. There are five variables q1, q2, q3, q4, q5. I find out Tukey's Hinges Quartiles (Q1, Q2, Q3) using the syntax given later. The Q1 value needs to be used to compute another variable. e.g:
COMPUTE ProcessedQ1 = <Q1 value-how to find this value> * 3.
Similar process to be applied for Q2 and Q3.
Is there a way to use the Q1, Q2, and Q3 values from the output file (or if possible any other process) to compute into a new variable as I described above?
The Q1, Q2, Q3 are obtained from the following syntax from the output file.
EXAMINE VARIABLES=q1
/PLOT NONE
/PERCENTILES(5,10,25,50,75,90,95) HAVERAGE
/STATISTICS NONE
/MISSING LISTWISE
/NOTOTAL.