2008年8月22日

摘要: 常用的几个就不说了,拣几个不常用的说吧。 1.Missing(),如果变量有缺失值,则返回真。如 data test_miss; set learn.blood; if missing(Gender) then MissGender + 1; if missing(WBC) then Miss... 阅读全文
posted @ 2008-08-22 16:25 zgw21cn 阅读(5213) 评论(1) 推荐(0) 编辑
摘要: 1.从一个数据集中分拆两个子集 Code Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->1datamalesfemales; 2setle... 阅读全文
posted @ 2008-08-22 16:21 zgw21cn 阅读(5432) 评论(0) 推荐(0) 编辑
摘要: 1.假设有包含学生信息的文件,变量有名字,性别,期中成绩,测验成绩等级及期末成绩。数据内容如下 File c:"books"learning"grades.txt 21 M 80 B- 82 . F 90 A 93 35 M 87 B+ 85 48 F . . 76 59 F 95 A+ 97 15... 阅读全文
posted @ 2008-08-22 16:19 zgw21cn 阅读(7711) 评论(1) 推荐(0) 编辑
摘要: 逻辑运算符如下 Logical Comparison Memonic Symbol Equal to EQ = Not equal to NE ^= or ~= or ¬= Less than LT Greater than or equal to GE >= Equal to one in a... 阅读全文
posted @ 2008-08-22 16:17 zgw21cn 阅读(1533) 评论(0) 推荐(0) 编辑
摘要: 作为一个例子,假设你想将数据集中的内容导出到Excel,下述代码创建csv文件 libname learn 'c:"books"learning'; ods csv file='c:"books"learning"odsexample.csv'; proc print data=learn.surv... 阅读全文
posted @ 2008-08-22 16:16 zgw21cn 阅读(3466) 评论(0) 推荐(0) 编辑
摘要: 对变量添加标签,示例代码如下 libname learn 'c:"books"learning'; data learn.test_scores; length ID $ 3 Name $ 15; input ID $ Score1-Score3; label ID = 'Student ID... 阅读全文
posted @ 2008-08-22 16:15 zgw21cn 阅读(2287) 评论(0) 推荐(1) 编辑
摘要: 1.显示所有数据集 使用Contents过程显示库中所有数据集的名字,如 proc contents data=Mozart._all_ nods; run; 可选关键字NODS表示忽略每个数据集的细节,仅显示数据集的名字。 2.无需创建新数据集 在制作报告或其它过程中,当数据集名设为_NULL_... 阅读全文
posted @ 2008-08-22 16:13 zgw21cn 阅读(1334) 评论(0) 推荐(0) 编辑
摘要: 1.设在路径:c:"books"learning下有文本文件mydata.txt,其数据以空格格开,形式如下: M 50 68 155 F 23 60 101 M 65 72 220 F 35 65 133 M 15 71 166 读入SAS的代码如下: data demographics; inf... 阅读全文
posted @ 2008-08-22 16:12 zgw21cn 阅读(4817) 评论(0) 推荐(3) 编辑
摘要: When running Enterprise Miner attempting to open a diagram may result in the following message: ERROR: Diagram locked by . This will occur if the... 阅读全文
posted @ 2008-08-22 16:06 zgw21cn 阅读(707) 评论(0) 推荐(0) 编辑
摘要: Create a file called Renviron.site with the following single line: Language=en and put it in your ../R/etc folder. 阅读全文
posted @ 2008-08-22 16:04 zgw21cn 阅读(281) 评论(0) 推荐(0) 编辑

导航