由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - SAS help needed!
相关主题
关于recode data的问题,多谢。Import excel file to sas (the first 8 or more observations
求SAS code在SAS里面如何进行数组操作?
SAS question (紧急求助,在线等)sas一问
SAS help needed, manual input during Data step.Ask a SAS question
help for sas program[合集] 请教一个SAS数据input的问题
请教工作中遇到的correlation问题SAS问题请教:Numeric Variable Length的设定
syntax errors请教一个SAS问题
SAS 问题求助,有包子##问一个SAS BASE 问题##
相关话题的讨论汇总
话题: sas话题: end话题: begin话题: sum话题: x10
进入Statistics版参与讨论
1 (共1页)
A*****a
发帖数: 1091
1
data:
obs begin end a1 a2 a3....a1000
1 2 50 x x x .....x
.....
如果我有几千个这样的observation,每一个有不同的begin和end数字,然后我需要把a(
begin)到a(end)给加起来,e.g., obs1, sum(of a2-a50). 但是每一个的开始和结束不
一样. 有什么快点的方法么
Many Many thanks
w*******n
发帖数: 469
2
array
A*****a
发帖数: 1091
3
还是不知道该怎么做

【在 w*******n 的大作中提到】
: array
f******u
发帖数: 250
4
data a;
input x1-x10;
cards;
1 2 3 4 5 6 7 8 9 10
. 3 4 5 6 7 8 9 . .
3 6 5 7 . . . . . .
;
run;
data aa;
set a;
array num _numeric_;
do over num;
if num="." then num=0;
end;
y=sum(of x1-x10);
run;
m*****a
发帖数: 658
5
data a;
input begin end x1-x10;
cards;
1 3 1 2 3 4 5 6 7 8 9 10
5 7 . 3 4 5 6 7 8 9 . .
2 8 3 6 5 7 9 10 11 12 13 .
;
run;
data see;
set a;
array X X1-X10;
sum=0;
do i=begin to end;
sum=sum+X[i];
end;
run;
1 (共1页)
进入Statistics版参与讨论
相关主题
##问一个SAS BASE 问题##help for sas program
question about SAS BASE 123 NO.110请教工作中遇到的correlation问题
请问base(123题)的第114题syntax errors
请教一个SAS问题SAS 问题求助,有包子
关于recode data的问题,多谢。Import excel file to sas (the first 8 or more observations
求SAS code在SAS里面如何进行数组操作?
SAS question (紧急求助,在线等)sas一问
SAS help needed, manual input during Data step.Ask a SAS question
相关话题的讨论汇总
话题: sas话题: end话题: begin话题: sum话题: x10