由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - how to output cumulative percent to a dataset from Proc Freq?
相关主题
请问SAS中如何通过组内一个变量的值控制整组变量ask for help (urgent): A SAS question
怎样储存我想要的proc means 的结果?[合集] Need help on data manipulation, thanks a lot!
SAS question - baoziSAS问题来了
简单的SAS问题sas问题
问你们个 sas macro 的问题请教一个sas编程问题
请教关于SAS表格输出的问题sas proc report的问题
请教一个SAS小问题:如何得到 one cumulative varialbe of character variable?SAS问题
HELP!!!!!请问R Code和 Matlab Code 思路是否近似?
相关话题的讨论汇总
话题: freq话题: proc话题: cumulative话题: dataset话题: output
进入Statistics版参与讨论
1 (共1页)
z********n
发帖数: 710
1
proc freq data=x;
table var1;
by var2;
run;
I need to get a new dataset from this freq table with cumulative percent in
it.
How can I do it?
proc freq data=x;
table var1/noprint output=freq;
by var2;
run;
By running the previous code, I got percent not cumulative one.
The dataset is large. Thank you!!!
a*****8
发帖数: 110
2
ods output onewayfreqs=freq;
proc freq data=x;
table var1;
by var2;
run;
ods output close;
z********n
发帖数: 710
3
thank you!
a*****8
发帖数: 110
4
You are welcome!
1 (共1页)
进入Statistics版参与讨论
相关主题
请问R Code和 Matlab Code 思路是否近似?问你们个 sas macro 的问题
[急求助] survival analysis (SAS)请教关于SAS表格输出的问题
更新一下Taste of R,再问两个R的问题。请教一个SAS小问题:如何得到 one cumulative varialbe of character variable?
SAS question: count non-missing value for different variablesHELP!!!!!
请问SAS中如何通过组内一个变量的值控制整组变量ask for help (urgent): A SAS question
怎样储存我想要的proc means 的结果?[合集] Need help on data manipulation, thanks a lot!
SAS question - baoziSAS问题来了
简单的SAS问题sas问题
相关话题的讨论汇总
话题: freq话题: proc话题: cumulative话题: dataset话题: output