下面是一段根据logistic 回归结果绘制ROC曲线的程序:
data;
input disease n age;
cards;
0 14 25
0 20 35
0 19 45
7 18 55
6 12 65
17 17 75
;
proc logistic;
model disease/n = age /scale=none
clparm=wald clodds=pl rsquare outroc=roc1;
units age=10;
run;
goptions dev=win;
symbol1 i=join v=none;
proc
gplot data=roc1;
title 'ROC Curve';
axis1 length=4 IN order=0 to 1 by 0.2;
plot _SENSIT_*_1MSPEC_=1 / vaxis=axis1 haxis=axis1;
run;
有两句看读懂:
goptions dev=win;
symbol1 i=join v=none;
请问这两句是做什么用的?
另外,还有gplot过程和plot过程有联系吗?以前没用过gplot过程,只用过plot过程。
急切等待高手的解答!