I think that you are asking something like; "I lost my code, how was this generated?"
This looks to me like a listing of a parameter estimate data set. See if you can find code that looks something like the following.
[pre]proc reg data=sashelp.class outest=parms;
model height = weight;
run;
proc print data=parms;
run;[/pre]
... View more