Dear Community: My objective is to generate a list of T-scores, by observation, for a simple data set of variable "X" observations (n=13). The issue is that I cannot find a command to create a table of generated T-scores for each individual observation. For greater clarity, I want to write SAS code to calculate a T score for each observation using the z score and that formula is T = (Z x 10) + 50. *Build raw data table for 13 provided observations; DATA HW2; INPUT X; DATALINES; 43 42 40 39 38 37 36 24 28 22 18 16 10 ; RUN; I transformed the X observations into z-scores and generated a new dataset "zHW2" (see below). *Transform the X scores into z-scores; PROC STANDARD data=HW2 Mean=0 STD=1 Out=zHW2; VAR X; RUN; Now I would like to compute the T scores and generate a revised dataset labeled "tHW2." Thank you.
... View more