- 1、本文档共300页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
SAS统计软件英文版course2
Processing Data Iteratively DO Loop Processing Statements within a DO loop execute for a specific number of iterations or until a specific condition stops the loop. DO Loop Processing You can use DO loops to perform repetitive calculations generate data eliminate redundant code execute SAS code conditionally. Repetitive Coding Compare the interest for Yearly versus quarterly compounding on a $50,000 investment made for one Year at 7.5 percent interest. How much money will a person accrue in each situation? Repetitive Coding data compound; Amount=50000; Rate=.075; Yearly=Amount*Rate; Quarterly+((Quarterly+Amount)*Rate/4); Quarterly+((Quarterly+Amount)*Rate/4); Quarterly+((Quarterly+Amount)*Rate/4); Quarterly+((Quarterly+Amount)*Rate/4); run; Repetitive Coding proc print data=compound noobs; run; DO Loop Processing The Iterative DO Statement The iterative DO statement executes statements between DO and END statements repetitively, based on the value of an index variable. specification-1…specification-n can represent a range of values or a list of specific values. The Iterative DO Statement The values of start, stop, and increment must be numbers or expressions that yield numbers are established before executing the loop. Any changes to the values of stop or increment made within the DO loop do not affect the number of iterations. The Iterative DO Statement What are the values of each of the four index variables? The Iterative DO Statement What are the values of each of the four index variables? The Iterative DO Statement What are the values of each of the four index variables? The Iterative DO Statement What are the values of each of the four index variables? The Iterative DO Statement item-1 through item-n can be either all numeric or all character constants, or they can be variables. The DO loop is executed once for each value in the list. The Iterative DO Statement How many times will each DO loop execute? The Iterative DO Statement Ho
您可能关注的文档
最近下载
- 6.4.3 余弦定理(第一课时)教学设计-2023-2024学年高一下学期数学人教A版(2019)必修第二册.docx
- 电力网络规划设计毕业论文.docx
- 竣工测绘及资料编制方案.doc VIP
- 2025党校入党积极分子发展对象考试试卷题库(含答案).docx VIP
- TBBZ型高压并联电容器补偿装置使用说明书-山东泰开电力电子有限.DOC
- 乙肝和丙肝血透病人的护理.pptx VIP
- 北京市初中学业水平考试体育与健康知识模拟练习题.docx VIP
- 竣工验收综合报告(污水处理厂).doc VIP
- 基于腰椎MRI影像的骨密度评估:新型评分方法的探索与验证.docx
- 直流系统蓄电池充放电试验报告.doc
文档评论(0)