由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - 请教一个sas编程问题
相关主题
请教sas高人(数据读入)请教SAS LABEL问题。
SAS helpSAS question - baozi
请教flag问题弱问一个SAS里面求adjusted means的问题
求大牛解答 SQL 问题how to interprete the factor in factor anlaysis
SAS question: count non-missing value for different variablesdata grouping, sub-grouping by column variable in R
[合集] How to specify a variable as missing[合集] Need help on data manipulation, thanks a lot!
[合集] └ Re: 关于stepwise programmingSAS问题来了
A SAS questionsas proc report的问题
相关话题的讨论汇总
话题: var2话题: var1话题: variable话题: data话题: output
进入Statistics版参与讨论
1 (共1页)
j*****g
发帖数: 222
1
我如果一定要用data step
捡出一个variable 的maximum,by另外一个variable
怎么做? 请大牛指教! 谢谢了!
y****n
发帖数: 46
2
data test;
do i=1 to 5;
do j=1 to 8;
var1=i;
var2=i*j;
output;
end;
end;
drop i j;
proc sort;
by var1 var2;
run;
data test1;
set test;
by var1 var2;
if last.var1 then output;
run;
1 (共1页)
进入Statistics版参与讨论
相关主题
sas proc report的问题SAS question: count non-missing value for different variables
SAS问题[合集] How to specify a variable as missing
请问R Code和 Matlab Code 思路是否近似?[合集] └ Re: 关于stepwise programming
[急求助] survival analysis (SAS)A SAS question
请教sas高人(数据读入)请教SAS LABEL问题。
SAS helpSAS question - baozi
请教flag问题弱问一个SAS里面求adjusted means的问题
求大牛解答 SQL 问题how to interprete the factor in factor anlaysis
相关话题的讨论汇总
话题: var2话题: var1话题: variable话题: data话题: output