Usage Note 23349: How can I modify the default format displayed with PROC FREQ?
To modify the format for a field,
edit the FORMAT= attribute with PROC TEMPLATE. If you are not sure which
template is being used, issue the ODS TRACE statement and
it will generate this information.
proc template;
edit Base.Freq.Onewayfreqs;
edit Percent;
format = 6.4;
end;
end;
run;
See also the full PROC TEMPLATE FAQ and Concepts.
Operating System and Release Information
| Product Family | Product | System | Reported Release | Fixed Release* |
| SAS System | Base SAS | All | n/a | |
*
For software releases that are not yet generally available, the Fixed
Release is the software release in which the problem is planned to be
fixed.
| Type: | Usage Note |
| Priority: | low |
| Topic: | Third Party ==> Output ==> HTML SAS Reference ==> ODS (Output Delivery System) SAS Reference ==> Procedures ==> FREQ
|
| Date Modified: | 2007-10-04 16:10:51 |
| Date Created: | 2003-08-08 16:42:39 |