结果:找到“sas macro”相关内容215个,排序为按回复时间降序,搜索更多相关帖子请点击“高级”
【书籍分享】SAS Macro Programming Made Easy 第三版
18 个回复 - 6562 次查看
This task-oriented guide through the fundamentals of the SAS
macro facility includes a generous amount of illustrations, examples, and tips. Beginning
macro programmers will learn to write SAS
macro p ...
2017-8-2 15:18 - 柏家言 - SAS专版
SAS MACRO宝典
6 个回复 - 1352 次查看
这本书出自我十分喜欢的教授Art Carpenter,信仰所以学习了他的书,比如这本Carpenter's Complete Guide to the SAS Macro Language。首先很喜欢他写作的语句,顺便小小学习一下英语,看这种编程书都有种看小说的层次 ...
2019-6-11 16:27 - pengyuguai2019 - 商业数据分析
A SAS® Macro for Deming Regression
0 个回复 - 891 次查看
In method-comparison studies, regression analysis is often used to estimate the systematic difference
between measurements from two different methods1
. Ordinary linear regression should only be us ...
2019-8-20 11:50 - jerrystp - 新手入门区
sas macro变量引用
8 个回复 - 1630 次查看
%
macro export_excel;
%do i=1 %to &nummem;
%let tname=%qscan(&memlist,&i,\);
proc export data=rawfile.&tname
outfile='D:\study\datasets.xlsx'
dbms=xlsx
replace label;
sheet="&tn ...
2020-4-17 11:01 - 白风黑息11 - SAS专版
sas macro %eval function
3 个回复 - 2727 次查看
%let num=10;
%LET result=%eVAL(&NUM gt 5.1);
%put &result;
%let num=10;
%LET result=%eVAL(&NUM gt 5);
%put &result;
对于第二个,因为10>5,所以result返回的结果是1,这个我已经清楚了。
谁呢帮 ...
2017-9-18 23:56 - jeremyyang - SAS专版
SAS Macro Programming Made Easy,2nd edition
5 个回复 - 1100 次查看
This book provides beginners with a thorough foundation in SAS
macro programming.The
macro facility is a popular part of SAS. Macro programming is a required skill for many SAS programming jobs, and t ...
2019-5-1 21:19 - david01186 - 商业数据分析
求下面文章中提到的SAS macro
6 个回复 - 2309 次查看
最近看到一篇文章:A SAS
macro for parametric and semiparametric mixture cure models。里面提到一个SAS
macro PSPMCM, 给了链接,但是打不开,给文中通讯作者的邮箱发邮件,被退信。
哪位亲,有这个SAS mac ...
2017-11-21 14:19 - leedx - SAS专版
怎么用SAS macro实现线性插值
2 个回复 - 2992 次查看
哪位大神能帮忙写个SAS
macro,以实现数据的线性插值,结果满意一定追加金币,感激不尽。请发至 heidousl99@qq.com
以下是两组数据,希望能够通过
macro他们实现线性插值. 比如已知X=22,求它对应的Y值。
2015-8-30 12:02 - sl4499 - SAS专版
sas proc sql 放进Macro中取不出数据
3 个回复 - 2132 次查看
%Macro Form;
%Do i=1 %to 3;
data date;set date;
if _N_ = &i then call symput('month',month1);
run;
%put &month;
proc sql;
create table temp0 as
select a.InstrumentID, a.Tradedate, b.S ...
2017-9-26 18:54 - jigouhuan - SAS专版
sas macro function
3 个回复 - 1836 次查看
请问,%qsysfunc() 与 %sysfunc之间有什么区别呢?
data dept;
input dept $ 7. name $ 9. salary;
call symput('new', dept);
datalines;
bedding Watlee 18000
bedding Parker 9000
beddin ...
2017-9-9 23:46 - jeremyyang - SAS专版
求一个SAS TTEST MACRO 方法
3 个回复 - 1510 次查看
我需要写一个关于TTEST 的MACRO, 实现下面的功能,我想问下,怎样才能PRINT 出来M_MEAN ,F_MEAN
我下面写的有什么问题。谢谢!
%
macro t_table (numvar);
%let numvar=age;
proc ttest data=chol_new;
class ...
2017-6-21 10:33 - pengpeng0413 - SAS专版
SAS 在macro中创建宏变量 然后引用不了
1 个回复 - 1283 次查看
请教一下各位大神,我创建了宏变量,但是却引用不了是怎么回事呢?
%
macro count(where=,ord=);
proc sql noprint;
select count(distinct a) into : p3&ord. from test where &where. and c=1 ;
...
2017-6-13 15:55 - bamboo.f.alias - SAS专版
sas: 在data部中编好attrn函数后,整体移进macro里无法运行
2 个回复 - 2542 次查看
我的目的是提取数据集[tp_receipt1]中的观测数,将该值赋给宏变量“or”。编的程序如下:
data _null_;
o=open('tp_receipt1');
n=attrn(o,'nobs');
c=close(o);
call symputx('or',put(n,8.));
run;
这 ...
2017-5-5 13:36 - 靳偌遥 - SAS专版
sas macro 读取excel
2 个回复 - 1660 次查看
程序1:
%
macro cha(datapath=,datanum=,dataname=);
%do i=1 %to &datanum;
proc import datafile="&datapath&i.xls[/backcolor]"
out=vba.&dataname&i replace;
%end;
%mend ;
%cha(datapath=E:\f\, ...
2016-10-19 16:33 - liqihualiu - SAS专版
SAS Macro 错误提示 有 1 个未闭合的“DO”块 能解决么
2 个回复 - 4036 次查看
程序如下;
%
macro setymcurr(ns=);
data _null_;
set ymtot(firstobs=&ns. obs=&ns.);
call symput('ymcurr',ymcurr);
run;
%mend;
data _null_;
do i=1 to 2;
%setymcurr(ns=1);
put & ...
2016-9-8 16:31 - 智泉time - SAS专版
SAS 9.4 Macro Language
2 个回复 - 2053 次查看
Content Chapter 1 • Introduction to the Macro Facility . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3Getting Started with the Macro Facility . . . . . . . . ...
2016-6-27 10:45 - Bookseek - SAS专版
SAS macro小问题,急!
3 个回复 - 2787 次查看
情况是这样的,现有两个文件夹在
sas grid 上,第一个文件夹里名称如下:
ghjk_000000, ghjk_003000,ghjk_100000,ghjk_103000,ghjk_163000...
qwer_000000....
asdf_063000...
命名规则是前四个字母代表一种产品 ...
2016-6-17 03:40 - chicago1898 - SAS专版
请教一个sas中macro的问题 感谢!
7 个回复 - 3207 次查看
大家好,
我想请教一个
sas问题,我有一组数据如图1所示,对于每个股票代码,每一年都有一个序号gp。我想在这个表后面加一列trdmnt。比如000001,1996,对应的gp=4 我希望能把这行加一列,把这个year=1996对应的g ...
2016-5-10 23:27 - 白塔湖123 - SAS专版
SAS ADV Macro, 全局变量,局部变量
2 个回复 - 3269 次查看
关于这些感觉资料好少, 有一些困惑,请教
比如像这个程序,由于第一句 %let new 定义了全局变量,所以new 的值一直都是inventory, 对不对?
%let new=inventry;
%
macro name1;%let new=report;%mend name1 ...
2016-4-27 22:08 - MiSH2HK - SAS专版
求教sas macro 中&符号的意义
4 个回复 - 8746 次查看
正在看adv的
macro一节,对&符号始终不完全理解。用let定义变量后,一个&的含义很清楚,但不明白为什么要做resolve,&&和&&&具体来说又是如何分步骤resolve的,有没有存在四个或更多&的呢?
谢谢!
2014-11-30 20:21 - 07241 - SAS专版
有关SAS MACRO
3 个回复 - 1654 次查看
考试也考了, 这个MACRO真正运用起来还是一头雾水。读前辈的code还是很困难。各位能指点一下,怎么逐渐提高技术? 谢谢。
2015-11-10 10:37 - wenling15 - SAS专版