注册一亩三分地论坛,查看更多干货!
您需要 登录 才可以下载或查看附件。没有帐号?注册账号 
x
来回馈地里啦~
心得:一定要好好看70题+机经每日一练+SAS 官网practice exam,我是每部分刷了两遍。
. 1point3acres
我会用R,所以对coding稍微有些基础,但没有系统学过。完全没有刷50和123题。完整的看过SAS Certified Prep Guide Base Programming Using SAS 9.4; 看过SAS官网上免费的教程。学完以后做过一遍SAS practice exam, 发现好多题都不太会,查阅help center勉强能做,但总是差一点儿。之后重点攻克机经每日一练,考试前一天把70题又过了一遍,敲了一遍机经每日一练,查阅了近期的机经,考试当天做了一遍practice exam。
考试题基本上全在70题和机经每日一练里,选择题有两三道新题。
1. 读入excel sheet后,excel里的column name默认是按什么标注的
A. Informat
B. Description
C. Format
D. Label
我选了D,应该是正确的,因为我access and create data structures section是满分
-baidu 1point3acres
2. Means 语句默认处理哪些信息
A. all missing and non-missing numeric value
B. all missing and non-missing numeric value and character value with number
C. Non-missing numeric value and character value with number
D. Non-missing numeric value
我选择了D。不确定是否正确,查SAS HELP是说missing value 默认是不算在proc means里的。
3. ODS PDF 'XX'';
PROC PRINT XX;. Waral dи,
RUN;
PROC MEANS XX;
RUN;
ODS PDF CLOSE;. ----
问pdf里保留了有哪些procedure
我选择了Both proc print and proc means. 应该也是正确的。Generate reports and output section 我也是满分。
The behavior of the ODS (Output Delivery System) in SAS can be controlled using various options and statements to specify which procedure results are included in the output. By default, the ODS HTML destination will include all procedure results that are generated during the SAS session.
However, you can use the ODS SELECT statement to control which procedures or results are included in the output. For example, you can use the following statement to include only the results from the PRINT procedure in the ODS HTML output:
ods html select print;. 1point3acres.com
4. data test;
text='She sells seashells by the seashore';. check 1point3acres for more.
a=find(text, 'she ')
run;
问a的值。我选择了0. 把语句写到SAS里输出是0。这里find里没有‘i’,所以大小写字母是有影响的。且‘she ’有空格,所以是0.
5. 具体原题记不太清了,类似a变量是数据格式的日期,选择一项语句让b变量显示JAN1994类型的character变量。
选择答案是:b=put(a, monyy7.)
应该没有问题,用以下code在sas里test过了。
data test;
a='01JAN1994'd;
b=put(a, monyy7.);
run;
大概新题就是这些了。
选择填空里考了两道macro,两道transpose。
proc import dbms考了csv
. Waral dи,
coding题都在机经每日一练里,考点融合。改错题一道是bed, chair, sofa,结合if then do end语句。
另一道是concatenate two datasets, 一个ID是分类变量,要转变成numeric variable。外加rename。
一些考试技巧:考生没有权限在cert里的数据集和program进行修改,会弹出类似‘you don't have administrative privileges on the server’的报错,所以proc sort 一定要写out到新的数据集;改错题打开program以后save as在自己存program的文件夹里。选择填空题里遇到不确定的题,可以最后review coding题的时候在help center里查询。建议有条件还是去考试中心考试,不用担心技术问题,打开help center网站反应速度也还不错,不会卡死。
感谢大神们分享的机经和经验!祝大家考试顺利~ |