Fishers z transformation

classic Classic list List threaded Threaded
3 messages Options
Reply | Threaded
Open this post in threaded view
|

Fishers z transformation

Anthony James
Dear colleagues,
I have the point bacterial correlations for 40 test items. I want to transform them to Fishers z.
They are in one column, as a variable, in SPSS. I want to make them normally distributed using Fishers z transformation.
How can I do that in SPSS?
Can I do it by pointing and clicking? If not, I’d be thankful if you provided the syntax.

Regards
Anthony
Reply | Threaded
Open this post in threaded view
|

Re: Fishers z transformation

Bruce Weaver
Administrator
Do you mean point-biserial, by any chance?  ;-)

COMPUTE rprime = 0.5*ln(abs((1+r)/(1-r))).


Anthony James wrote
Dear colleagues,
I have the point bacterial correlations for 40 test items. I
want to transform them to Fishers z.
They are in one column, as a variable, in SPSS. I want to
make them normally distributed using Fishers z transformation.
How can I do that in SPSS?
Can I do it by pointing and clicking? If not, I’d be thankful if you provided the syntax.

Regards
Anthony
--
Bruce Weaver
bweaver@lakeheadu.ca
http://sites.google.com/a/lakeheadu.ca/bweaver/

"When all else fails, RTFM."

PLEASE NOTE THE FOLLOWING: 
1. My Hotmail account is not monitored regularly. To send me an e-mail, please use the address shown above.
2. The SPSSX Discussion forum on Nabble is no longer linked to the SPSSX-L listserv administered by UGA (https://listserv.uga.edu/).
Reply | Threaded
Open this post in threaded view
|

Re: Fishers z transformation

Bruce Weaver
Administrator
Jon pointed out off-list that ABS is not needed.  So you could simplify that to:

COMPUTE rprime = 0.5*ln((1+r)/(1-r)).


Bruce Weaver wrote
Do you mean point-biserial, by any chance?  ;-)

COMPUTE rprime = 0.5*ln(abs((1+r)/(1-r))).


Anthony James wrote
Dear colleagues,
I have the point bacterial correlations for 40 test items. I
want to transform them to Fishers z.
They are in one column, as a variable, in SPSS. I want to
make them normally distributed using Fishers z transformation.
How can I do that in SPSS?
Can I do it by pointing and clicking? If not, I’d be thankful if you provided the syntax.

Regards
Anthony
--
Bruce Weaver
bweaver@lakeheadu.ca
http://sites.google.com/a/lakeheadu.ca/bweaver/

"When all else fails, RTFM."

PLEASE NOTE THE FOLLOWING: 
1. My Hotmail account is not monitored regularly. To send me an e-mail, please use the address shown above.
2. The SPSSX Discussion forum on Nabble is no longer linked to the SPSSX-L listserv administered by UGA (https://listserv.uga.edu/).