- 1、本文档共54页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
临床研究SAS高级编程 -- SAS Data Step
临床研究SAS高级编程
--SAS Data Step
1 临床研究SAS高级编程
Contents
Overview
How SAS processes programs
Compilation phase
Execution phase
Debugging a DATA step
Testing your programs
2 临床研究SAS高级编程
Overview
Introduction
This section teaches you what
happens behind the scenes when
the DATA step reads raw data.
Youll examine the program data
vector, which is a logical framework
that SAS uses when creating SAS
data sets.
Understanding how the program
operates can help you to anticipate
how variables will be created and
processed, to plan your
modifications, and to interpret and
debug program errors. It also gives
you useful strategies for preventing
and correcting common DATA step
errors.
3 临床研究SAS高级编程
How SAS Processes Programs (1)
When you submit a DATA step, SAS processes the DATA step and
then creates a new SAS data set. Lets see exactly how that happens.
A SAS DATA step is processed in two phases:
During the compilation phase, each statement is scanned for syntax
errors. Most syntax errors prevent further processing of the DATA step.
When the compilation phase is complete, the descriptor portion of the new
data set is created.
If the DATA step compiles successfully, then the execution phase begins.
During the execution phase, the DATA step reads and processes the input
data. The DATA step executes once for each record in the input file, unless
otherwise directed.
4 临床研究SAS高级编程
How SAS Processes Programs (2)
The diagram below shows the flow of DATA step
processing for reading raw data. Well examine both the
compilation phase and the execution phase in this section.
5
文档评论(0)