excel表格:
最高 最低
78 45
98 44.8
. .
. .
我把表格导入进来,虽然改名了,却没有实现两行之差问题在哪呢?要用什么程序呢?
libname zhao 'e:\';
data zhao.time;
set work.three;
title 'time series';
label high="最高";low="最低";
difference=high-low;
ln=log10(difference);
lnln=log10(log10(high/low));
series=ln-lnln;
;
run;
proc print;
run;