在下面的 SAS 语句中,参数“noobs”的作用是什么?和“标签”代表?
在下面的SAS语句中,参数“noobs”和“label”代表什么?
proc print data-sasuser.schedule noobs label;
In the following SAS statement, what do the parameters "noobs" and "label" stand for?
proc print data-sasuser.schedule noobs label;
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
根据 PROC PRINT 上的 SAS 9.2 文档:
“NOOBS - 抑制输出中按数字标识每个观察值的列”
“LABEL - 使用变量的标签作为列标题”
per SAS 9.2 documentation on PROC PRINT:
"NOOBS - Suppress the column in the output that identifies each observation by number"
"LABEL - Use variables' labels as column headings"
菜鸟不会向您显示观察数列
(1,2,3,4,5,......)
我的第一个标题
没有菜鸟的结果
Obs 姓名、性别、组别、身高、体重
1 麦克马 21 150
2 亨利 MB 30 140
3 诺里安 FB 18 130
4 纳丁 FB 32 135
5 dianne fa 23 135
结果与菜鸟
我的第一个头衔
名称性别组身高体重
马迈克 21 150
亨利 MB 30 140
诺里安FB 18 130
纳丁 FB 32 135
黛安娜法 23 135
noobs don't show you the column of observations number
(1,2,3,4,5,....)
my first title
results without noobs
Obs name sex group height weight
1 mike m a 21 150
2 henry m b 30 140
3 norian f b 18 130
4 nadine f b 32 135
5 dianne f a 23 135
results with noobs
my first title
name sex group height weight
mike m a 21 150
henry m b 30 140
norian f b 18 130
nadine f b 32 135
dianne f a 23 135