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

 

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

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