BookmarkSubscribeRSS Feed
hvganesh
Calcite | Level 5
Hi,
Could anyone please help me code the following model in SAS? In essence, I am trying to incorporate autoregressive error in an ordinary differential equation.

x_dot_t = (N - x_t) * (theta1 + theta2 * x_t) + e_t

e_t = rho * e_t-1 + u_t

The code without the autoregressive error is:

proc model data=test;
params theta1 theta2 N;
dert.x = (N-x)*(theta1+theta2*x);
fit x/time=t dw;
run;

I have tried the following and none of them works:

1. %ar(dert.x,1),
2. dert.x = (N-x)*(theta1+theta2*x) + zlag1(dert.x-(N-x)*(theta1+theta2*x));

Thanks in advance for your help.

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

What is ANOVA?

ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 0 replies
  • 1325 views
  • 0 likes
  • 1 in conversation