如下编程:data abc;input x y;cards;1 4562 7893 1234 1475 2586 369;run;proc reg data=abc;var y x;model y=exp(x);run;这样运行不出来,所以求解如何指定模型进行回归拟合?