由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
DataSciences版 - SAS coding help needed
相关主题
如何implement model with categorical variable?How to use sas to calculate the power of logistic regressi (转载)
请教proc transpose 问题 (转载)julia有前途吗? (转载)
leetcode 里的在两个sorted array里找median 得问题,是不是有什么trick?30+零经验大妈求转行DS建议
请问FB的data scientist职位onsite面试里面的ETL是怎么考的?大家有实地接触Tableau, Qlikview, SAS Visual Analytics or Pe (转载)
请问一个Python的问题请问如何access SAS软件?
商业车险的LOSS RATIO 预测:看了具体数据,都不知道怎么预测了。accident是偶然事件,到底怎么预测这个LOSS RATIO,是不是只能试一试Neural network?妹纸物理phd转data science求建议
[Data Science Project] Life time value有人参加过SIAM的会议吗 (转载)
入门者问一个pig问题有人在Big Data 用MATLAB ?
相关话题的讨论汇总
话题: var2话题: sas话题: var1话题: needed话题: coding
进入DataSciences版参与讨论
1 (共1页)
y**3
发帖数: 267
1
help needed from sas expert!
I have 2 variables in my sas data set-var1 var2. var2 only has value at the
first record.i need to compute the rest of var2 based on the ratios of two
records next to each other; for ex;
the 2nd row ; var22=(95/87)*85; then compute var23 based on the new number
and var12 and var13.
how to code this in sas efficiently? thanks
var1 var2
87 95
85
78
75
65
56
34
s*********h
发帖数: 6288
2
搜一下lag的用法。
加点私货:用SAS这种语言来做超过简单proc的东西就是反人类。
C********e
发帖数: 6
3
用ARRAY
data calculation(drop=i);
array var1{7} var11-var17 (87 85 78 75 65 56 34);
array var2{7} var21-var27 (95 0 0 0 0 0 0 );
do i=1 to 6;
var2{i+1}=(var2{i}/var1{i})*var1{i+1};
end;

proc print noobs data=calculation;
title 'Data Set calculation';
run;
格式之类可以随意调整

the

【在 y**3 的大作中提到】
: help needed from sas expert!
: I have 2 variables in my sas data set-var1 var2. var2 only has value at the
: first record.i need to compute the rest of var2 based on the ratios of two
: records next to each other; for ex;
: the 2nd row ; var22=(95/87)*85; then compute var23 based on the new number
: and var12 and var13.
: how to code this in sas efficiently? thanks
: var1 var2
: 87 95
: 85

1 (共1页)
进入DataSciences版参与讨论
相关主题
有人在Big Data 用MATLAB ?请问一个Python的问题
【真心请教】选master project课题 - 有包子 (转载)商业车险的LOSS RATIO 预测:看了具体数据,都不知道怎么预测了。accident是偶然事件,到底怎么预测这个LOSS RATIO,是不是只能试一试Neural network?
问个问题。[Data Science Project] Life time value
quant openings (contract position)入门者问一个pig问题
如何implement model with categorical variable?How to use sas to calculate the power of logistic regressi (转载)
请教proc transpose 问题 (转载)julia有前途吗? (转载)
leetcode 里的在两个sorted array里找median 得问题,是不是有什么trick?30+零经验大妈求转行DS建议
请问FB的data scientist职位onsite面试里面的ETL是怎么考的?大家有实地接触Tableau, Qlikview, SAS Visual Analytics or Pe (转载)
相关话题的讨论汇总
话题: var2话题: sas话题: var1话题: needed话题: coding