n*****t 发帖数: 1015 | 1 比如第一个loop里yr=2005, mon=1,我在log file里得到这样的error message:
ERROR: Physical file does not exist, E:vrpdata_analysishighfreq_datastk_list_
2004.txt.
ERROR: Import unsuccessful. See SAS Log for details.
ERROR: File ORIG.MT_.DATA does not exist.
ERROR: File WORK.YR_1.DATA does not exist.
我的程序如下:谢谢!
%macro subsetall;
%do yr=2005 %to 2006;
data _null_;
if &yr<=2005 then idxm=12;
else idxm=6;
call symput('idxm',idxm);
run;
%put &idxm;
%do mon=1 %to &idxm;
... 阅读全帖 |
|
l******l 发帖数: 1088 | 2 Base: $100,000
Yr1 Signing Bonus: $15,000
Yr2 Signing Bonus: $12,000
Stock: 175 RSU
fresh ms这个正常吗? |
|
k*****o 发帖数: 730 | 3 借这里人气问个题外的。问个工作上的问题,关于数据预测,如果我有yr1, yr5 and
yr10 的数据,怎么预测这几年之间的数据。
这里牛人比较多,不吝赐教。
谢谢 |
|
c****t 发帖数: 19049 | 4 用yr1,yr5,yr10的数拒做个model。如果数句是time dependent的,做个time series
model;如果不是,做个regression model |
|
f****j 发帖数: 13 | 5 俺yr1,老板教育说,PHD期间主要是训练基本技能、打好基础的,最好找一个领域,可
以在毕业前做出来2-3 solid essays,成为这个领域的expert。然后毕业以后再深入做
其他的领域。
要是这样的话,是不是做经典领域学到的东西多一些呢?但如果做经典领域的话,自己
简单的想法大部分都被人做过了,做更好的东西,确实需要有更深刻的积淀。。。所以
也挺纠结的。。。
了。 |
|
f****j 发帖数: 13 | 6 俺yr1,老板教育说,PHD期间主要是训练基本技能、打好基础的,最好找一个领域,可
以在毕业前做出来2-3 solid essays,成为这个领域的expert。然后毕业以后再深入做
其他的领域。
要是这样的话,是不是做经典领域学到的东西多一些呢?但如果做经典领域的话,自己
简单的想法大部分都被人做过了,做更好的东西,确实需要有更深刻的积淀。。。所以
也挺纠结的。。。
了。 |
|
l****q 发帖数: 767 | 7 So, I think what happens is: when the vacation pay is due, if the employee
decides not to take vacation or not to take all the vacation time , the
proper vacation payment needs to be made to the employee, right? so, should
the payment be based on the current wage rate or different rates for the
various vacation periods accrued (eg. for YR1, two weeks vacation not used;
yr 2 three weeks, but the wage rates for the two years are different)? |
|
k*****o 发帖数: 730 | 8 问个工作上的问题,关于数据预测,如果我有yr1, yr5 and yr10 的数据,怎么预测这
几年之间的数据。
谢谢 |
|
e*******e 发帖数: 75 | 9 我再用survival analysis 作分析的时候,用了下面的程序却发现问题:
%macro eun5(var1,var2,var3,var4,var5,var1T,var2T,var3T,var4T,var5T);
PROC PHREG DATA=ONE;
MODEL SURV*CENSOR(1)= &VAR1 &VAR2 &VAR3 &VAR4 &VAR5 &VAR1T &VAR2T &VAR3T &
VAR4T &VAR5T;
&VAR1=VAR1*LOG(SURV);
&VAR2=VAR2*LOG(SURV);
&VAR3=VAR3*LOG(SURV);
&VAR4=VAR4*LOG(SURV);
&VAR5=VAR5*LOG(SURV);
PROPORTIONALITY_TEST: TEST &VAR1T, &VAR2T, &VAR3T, &VAR4T, &VAR5T;
%MEND;
%EUN5 (YR1,YR2,YR3,YR4,YR5,YR1T,YR2T,YR3T,YR4T,YR5T);
最后总是出现:
error: variable var5 is not found |
|
k*****o 发帖数: 730 | 10 问个工作上的问题,关于数据预测,如果我有yr1, yr5 and yr10 的数据,怎么预测这
几年之间的数据。
谢谢 |
|
c*****1 发帖数: 131 | 11 If you have to do this and only have data for yr1, yr5 and yr10, try
interpolation. |
|