Let's say I have some sample of people with a measure of interest for each one, let's call it v
. Let's say I measure v
twice for the same set of people, one in January and one in December. Now I want to assess whether a person's v
value improved from January to December. Let's assume that a high v
value means they did well.
I thought of the following analyses, and I think I have seen it somewhere, and I wanted to know what the name of this is.
Consider taking each v
value in January and giving each person a z-score. That is,
January_z_i = (January_v_i - mean(January_v))/sd(January_v))
where January_z_i
is the z-score for a single person, January_v_i
is the v
value for a single person in January, and January_v
represents the entire list of v
values for January.
Now for December, I go ahead and do the following
December_z_i = (December_v_i - mean(January_v))/sd(January_v)
Notice how I used the mean
and sd
of January_v
for the December group. The logic is that, assuming the same sample space as measured in January, did that same person improve within that space if you consider their score in December.
What is the technical name for this analysis. Sorry I didn't explain it more succinctly.