sas ods html是什么意思

sas ods html是什么意思,第1张

%macro o2xl(xlname,sdata)

ods tagsets.ExcelXP options(sheet_name="&name.") style=XLStatistical

proc print data=&data. noobs label

run

%mend

* style 需要另外设置, label 表示在excel输出sas标签

ods results noresults

ods listing close

ods tagsets.ExcelXP file="..\file_name.xls" options(sheet_name="xlname0") style=XLStyle

proc print data=sdata0 noobs label

run

*table 1

%o2xl(xlname1,sdata1)

*table 2

%o2xl(xlname2,sdata2)

……

ods tagsets.excelxp close

给你个示例程序:

ods html

ods graphics on

proc mixed

class Family Gender

model Height = Gender / residual

random Family Family*Gender

run

ods graphics off

ods html close

这是使用ODS输出系统,直接将以身高为自变量,性别为因变量,进行mixed效应分析所得残差图输出为html格式。

以下是另外用回归方法作的残差图:

数据:

data Class

input Name $ Height Weight Age @@

datalines

Alfred  69.0 112.5 14  Alice  56.5  84.0 13  Barbara 65.3  98.0 13

Carol   62.8 102.5 14  Henry  63.5 102.5 14  James   57.3  83.0 12

Jane    59.8  84.5 12  Janet  62.5 112.5 15  Jeffrey 62.5  84.0 13

John    59.0  99.5 12  Joyce  51.3  50.5 11  Judy    64.3  90.0 14

Louise  56.3  77.0 12  Mary   66.5 112.0 15  Philip  72.0 150.0 16

Robert  64.8 128.0 12  Ronald 67.0 133.0 15  Thomas  57.5  85.0 11

William 66.5 112.0 15

程序:

ods html

ods graphics on

proc reg data = Class

model Weight = Height

run

quit

ods graphics off

ods html close

图见插入图:


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/8315562.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-15
下一篇 2023-04-15

发表评论

登录后才能评论

评论列表(0条)

保存