我希望SAS使用PROC REG计算预测的R平方值。
答案 0 :(得分:0)
您是说R平方?很容易获得。
trace("plotMA", exit = quote(var_dump <<- mget(ls())), where = asNamespace("limma"))
R平方位于数据集ods output FitStatistics = FitStatistics;
proc reg data = sashelp.class;
model height = age;
quit;
ods output close;
。