I’m trying to write a forecasting program and model and one of the objects in that will need to be incorporated is a seemingly unrelated equation system.
I’ve got the system written into my program:
What I’m wondering is if/ how I can:system atl
atl.append log(rtddnl) = c(1) + c(2)*log(repnl)+c(3)*log(popnl)+c(4)*log(hddnl)
atl.append log(rtddpe) = c(5) + c(6)*log(reppe)+c(7)*log(poppe)+c(8)*log(hddpe)
atl.append log(rtddns) = c(9) + c(10)*log(repns)+c(11)*log(popns)+c(12)*log(hddns)
atl.append log(rtddnb) = c(13) + c(14)*log(repnb)+c(15)*log(popnb)+c(16)*log(hddnb)
atl.sur(i)
1) Code a forecast for this system into the program
2) Append the results of the forecast or use the system in a model
