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.

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

Register now

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
  • 1359 views
  • 0 likes
  • 1 in conversation