由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - SAS里面quoting function的用法问题
相关主题
%quote and %bquote请教SAS IML调用DATA step数据的问题
Help: an I/O ERROR occured请教macro的一个小程序,
【大包子】问个macro的问题发包子求大牛解SAS问题,急
batch?How to the macro regression with if?
sas email请教一个SAS ADV 的题目
[合集] 一个sas问题再请教一道SAS ADV
大家能否帮忙给我看看这道SAS题。谢谢a sas adv question
请教一个SAS Macro问题。谢谢two sas adv questions
相关话题的讨论汇总
话题: text话题: comments话题: nrbquote话题: macro话题: mend
进入Statistics版参与讨论
1 (共1页)
j*****7
发帖数: 4348
1
想用一个parameter variable把%输入到macro variable里面, 下面这段code为什么
不行呢?
%macro text (comments = );
data text;
comm = "&comments";
run;
%mend;
%text(comments = %nrstr(%));
proc print data = text;
run;
试了什么%nrbquote, %superq 也不好用.
Thanks!
f******u
发帖数: 250
2
%macro text (comments = );
%let a=&comments;
data text;
comm = "&a";
run;
%mend;
%text(comments = %nrbquote(%));
f******u
发帖数: 250
3
this works too.
%macro text (comments = );
data text;
comm = "&comments";
run;
%mend;
%text(comments = %nrbquote(%));
j*****7
发帖数: 4348
4
Thanks!
转帐完成
转给用户:fengshou,现金(伪币):50,收取手续费:0.50

【在 f******u 的大作中提到】
: this works too.
: %macro text (comments = );
: data text;
: comm = "&comments";
: run;
: %mend;
: %text(comments = %nrbquote(%));

f******u
发帖数: 250
5
thanks, 受之有愧。

【在 j*****7 的大作中提到】
: Thanks!
: 转帐完成
: 转给用户:fengshou,现金(伪币):50,收取手续费:0.50

1 (共1页)
进入Statistics版参与讨论
相关主题
two sas adv questionssas email
[急求助] survival analysis (SAS)[合集] 一个sas问题
请教data mining 的问题,在线等,谢谢!大家能否帮忙给我看看这道SAS题。谢谢
诚心请教一道sas adv题请教一个SAS Macro问题。谢谢
%quote and %bquote请教SAS IML调用DATA step数据的问题
Help: an I/O ERROR occured请教macro的一个小程序,
【大包子】问个macro的问题发包子求大牛解SAS问题,急
batch?How to the macro regression with if?
相关话题的讨论汇总
话题: text话题: comments话题: nrbquote话题: macro话题: mend