I am using "traj" module in Stata. What would be the right way to store the data for further use. I mean, in SAS it is something like this:
PROC TRAJ DATA=A OUT=OF OUTPLOT=OP OUTSTAT=OS
But what would be the analogue in Stata? I get an error when trying:
traj, out(of) outplot(op) outstat(os) var(measure*) indep(age*) model(cnorm) min(0) max(10) order(2 1)
The error is either "variable op not found" or "option outstat() not allowed"
Any suggestions and references are appreciated.