Regards,
Martijn
I'm a little rusty on signal detection theory, but I think d' = z(hit) -
z(false alarm), right? So something like this should work:
COMPUTE #zhit = IDF.NORMAL(hit,0,1) .
COMPUTE #zfa = IDF.NORMAL(fa,0,1) .
compute dprime = #zhit - #zfa.
exe.
It assumes variables HIT and FA that give hits and false alarms as
proportions.
--
Bruce Weaver
bwe...@lakeheadu.ca
www.angelfire.com/wv/bwhomedir
data list list/id (f3) hitrate(f7.3) falsealarmrate(f7.3).
begin data
1 .50 .05
2 .70 .08
3 .45 .033
4 .51 .01
5 .96 .01
6 .06 .01
end data.
compute dprime = idf.normal(hitrate,0,1) -idf.normal(falsealarmrate,0,1).
formats dprime (f7.2).
list.
Art Kendall
Social Research Consultants
Thanks for you help!
Martijn
"Art Kendall" <Arthur....@verizon.net> wrote in message
news:45DC9DEC...@verizon.net...