The modified Base.Summary table template changes the foreground color of the NOBS column to green. The vertical alignment and heading of the NOBS column, and the other table attributes, are retained from the default table template and stay the same. To view the Base.Summary table template created by Program 1, follow these steps.

  1. Submit this command in the command bar:

    odstemplates
  2. Double-click the item store WORK.TEMPLAT.

  3. Double-click the item store Base.

  4. Right-click the table template Summary and select Open. The table template Base.Summary is displayed in the Template Browser window.

proc template;                                                                
   define table Base.Summary / store = SASUSER.TEMPLAT;                       
      notes "Summary table for MEANS and SUMMARY";                            
      dynamic one_var one_var_label one_var_name clmpct;                      
      column class nobs id type ways (varname) (label) (min) (max) (range) (n)
         (nmiss) (sumwgt) (sum) (mean) (uss) (css) (var) (stddev) (cv) (stderr
         ) (t) (probt) (lclm) (uclm) (skew) (kurt) (median) (mode) (q1) (q3) (
         qrange) (p1) (p5) (p10) (p25) (p50) (p75) (p90) (p95) (p99);         
      header h;                                                               
      define p99;                                                             
         header = "99th Pctl";                                                
         generic;                                                             
      end;                                                                    
      define p95;                                                             
         header = "95th Pctl";                                                
         generic;                                                             
      end;                                                                    
      define p90;                                                             
         header = "90th Pctl";                                                
         generic;                                                             
      end;                                                                    
      define p75;                                                             
         header = "75th Pctl";                                                
         generic;                                                             
      end;                                                                    
      define p50;                                                             
         header = "50th Pctl";                                                
         generic;                                                             
      end;                                                                    
      define p25;                                                             
         header = "25th Pctl";                                                
         generic;                                                             
      end;                                                                    
      define p10;                                                             
         header = "10th Pctl";                                                
         generic;                                                             
      end;                                                                    
      define p5;                                                              
         header = "5th Ptcl";                                                 
         generic;                                                             
      end;                                                                    
      define p1;                                                              
         header = "1st Pctl";                                                 
         generic;                                                             
      end;                                                                    
      define qrange;                                                          
         header = "Quartile Range";                                           
         generic;                                                             
      end;                                                                    
      define q3;                                                              
         header = "Upper Quartile";                                           
         generic;                                                             
      end;                                                                    
      define q1;                                                              
         header = "Lower Quartile";                                           
         generic;                                                             
      end;