SAS Label Statement
Labels of length up to 40 characters (including blanks) can be attached to SAS variables. This partially overcomes the 8 character limitation on SAS names. The most common usage of the label statement is in the data step in which the variable is created. Example:
data temp;
input x y type $;
label x='Distance Travelled'
type='Species';
......
公卫论坛
data temp;
input x y type $;
label x='Distance Travelled'
type='Species';
......
附件列表
词条内容仅供参考,如果您需要解决具体问题
(尤其在法律、医学等领域),建议您咨询相关领域专业人士。
如果您认为本词条还有待完善,请 编辑
上一篇 SAS Libname Statement 下一篇 SAS Keys Window