- 1、本文档共11页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
stata和sas命令对比
已有 556 次阅读 2010-5-8 10:56 |个人分类:Stata|系统分类:/home.php?mod=spacedo=blogview=allcatid=1科研笔记|关键词:SAS, STATA SASStataIn SAS operators can be symbols or mnemonic equivalents such as: or and For many situations in SAS order doesnt matter: = can be: = and = can be: = Most operators are the same in Stata as in SAS, but in Stata operators do not have mnemonic equivalents.? For example, you have to use the ampersand (??) and not the word and. This works: var_a = 1 var_b = 10 where this does not: var_a = 1 and var_b = 10 These are the operators that are different in Stata: Symbol Definition and| or = greater than or equal to = less than or equal to == equality (for equality testing)!= does not equal! not^ powerNote:? Symbols have to be in the order shown: = not = . /* this is a comment */ * this is also a comment ; /* this is a comment */ * this is also a comment // this is a comment as well To continue a command to the next line (line continuation): /// you can comment here as well For example: list id state gender age income /// race income date Range of values: if 1 = var_a = 10 or: if var_a in(1,2,3,4,5,6,7,8,9,10) or a list of character values: if state in(NC,AZ,TX,NY,MA,CA,NJ) if var_a = 1 var_a = 10 or: if inrange(var_a,1,10) or: if inlist(var_a,1,2,3,4,5,6,7,8,9,10) or a list of string values: if inlist(state,NC,AZ,TX,NY,MA,CA,NJ) Stata has a limit of 10 arguments to inlist() (which includes the string variable) when the arguments are strings.? More than one variable can be specified. Referencing multiple variables at a time: Say the following variables are in a data file in the order shown: var1 var2 var3 age var4 var5 Then you could code them as: var1--var5 To SAS, this means all variables that are positionally between var1 and var5, which would include the variable age. Referencing multiple variables at a time: var1-var5 To Stata, this means all variables that are positionally between var1 and var5.? Notice that there is only one dash (?-?). Referencing multip
您可能关注的文档
最近下载
- 2024年4月广东深圳市光明区马田街道办事处招聘一般专干及笔试历年典型考题及考点剖析附答案带详解.docx
- 文秘技能大赛题库完整.pdf
- 建筑工程图集 07SJ504-1 隔断、隔断墙(一).pdf
- 班级管理方案和班委职责与班级管理条例(范本)合集.doc VIP
- 2025年广东省高中语文学业水平合格考试卷试题(含答案详解).pdf VIP
- 金融监管学银行监管讲义课件.pptx
- 高中体育与健康_篮球 传切配合 教学课件设计.ppt
- 二 《简单相信,傻傻坚持》(教学课件)-【中职专用】高二语文精讲课堂(高教版2023·职业模块).pptx VIP
- 人教版《劳动教育》九年级 劳动项目二《三餐有营养》课件.pptx
- 2024年中考语文一轮复习(全国)(老师用)议论文写作(练习).pdf VIP
文档评论(0)