BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
MaryA_Marion
Lapis Lazuli | Level 10

Greetings,

The following code modifies the format for R square. I would like to also change formats for coefficient of variation, root mean square and y mean. I am not sure what those variables are called in the GLM template. Where can I find this information and what are those variable names?  

Thank you.

Sincerely,
Mary A. Marion

 

SAS CODE: 

edit Stat.glm.FitStatistics;

  notes "One-row table of fit statistics";

  dynamic yname;

  column RSquare ;

  define RSquare;

  header = "R-Square";

    format = 5.3;

  end;

end;

 

 

 

 

1 ACCEPTED SOLUTION

Accepted Solutions
Rick_SAS
SAS Super FREQ

To see the template, run

 

proc template;
source Stat.GLM.FitStatistics;
run;

If you are planning to edit the templates, please read the chapter in the SAS/STAT doc 

Using the Output Delivery System

---> Controlling Output Appearance with Templates

 

View solution in original post

1 REPLY 1
Rick_SAS
SAS Super FREQ

To see the template, run

 

proc template;
source Stat.GLM.FitStatistics;
run;

If you are planning to edit the templates, please read the chapter in the SAS/STAT doc 

Using the Output Delivery System

---> Controlling Output Appearance with Templates

 

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 818 views
  • 0 likes
  • 2 in conversation