今天做Logistic回归:
proc logistic data=iris ;
model species = SepalLength SepalWidth PetalLength PetalWidth;
output out=a p=pre predprobs=individual;
run;
在输出结果数据集a中有几项看不懂:
1:_FROM_(Formatted Value of the Observed Response):应该是样本分类
2:_into_(Formatted Value of the Predicted Response):应该是模型分类结果
3:_LEVEL_(Response Value):?
4:pre(Estimated Probability):?
请教!谢谢!