Hi! I would like to tune the number of significant digits used inside the proc glm statement as the default is not sensitive enough. I've seen there is a format option in the code statement, so I've been trying to do it as seen below in my example, but getting the following error. Any help would be appreciated. Thanks.
proc glm data=train noprint;
class a b c;
model x= a b c d;
code format = 20.7 file='control.sas';
quit;
data controlScore;
set test;
%include 'control.sas';
run;
Use Fw.d
code format = F20.7 file='control.sas';
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.