由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - 问一个macro编程问题
相关主题
问你们个 sas macro 的问题请教macro的一个小程序,
Stupid SAS programming style is driving me crazy....How to the macro regression with if?
用尽心思做好了一个macro请教一个SAS ADV 的题目
Need advice on SAS macro debugginga sas adv question
请教个概率计算的问题请教data mining 的问题,在线等,谢谢!
batch?请教用Macro creating dummy的问题
[合集] 一个sas问题请帮忙看3道SAS题。
请教一个SAS Macro问题。谢谢A problem from SAS Adv test
相关话题的讨论汇总
话题: symptom话题: weight话题: macro话题: freq话题: patient
进入Statistics版参与讨论
1 (共1页)
g**u
发帖数: 205
1
有这么一段data
data clinic;
input symptom patient_weight treatment day;
cards;
cough 100 1 5
cough 120 2 10
cough 290 3 15
heat 89 1 5
heat 111 2 10
heat 124 3 15
;
我用proc freq来summarize symptom
proc freq;
by symptom;
table treatment*day;
weight patient_weight;
run;
怎么用macro来写呢?
%macro symptom(treatment,day,patient_weight);
proc freq;
by &symptom;
table &treatment*&day;
weight &patient_weight;
run;
%mend;
这样对吗?
g****8
发帖数: 2828
2
没有明白,你的macro需要干什么?
如果只是那个freq的话,不需要macro吧,没有什么东西是变化的呀。
1 (共1页)
进入Statistics版参与讨论
相关主题
A problem from SAS Adv test请教个概率计算的问题
请教:sas 循环batch?
sas advance[合集] 一个sas问题
sas question请教一个SAS Macro问题。谢谢
问你们个 sas macro 的问题请教macro的一个小程序,
Stupid SAS programming style is driving me crazy....How to the macro regression with if?
用尽心思做好了一个macro请教一个SAS ADV 的题目
Need advice on SAS macro debugginga sas adv question
相关话题的讨论汇总
话题: symptom话题: weight话题: macro话题: freq话题: patient