stattutorials.com
Statistics Tutorials
for SAS, SPSS, WINKS, Excel


Statistical
Video Training
DVDs

Against All Odds Videos
Against All
Odds VIDEOS

Teaching Videos from Annenberg/PBS.
A video instructional series on statistics for college and high school classrooms.
Special Pricing $20 off!
Click here for Against All Odds info


WINKS Statistical Software
Affordable. Reliable. Relevant.
www.texasoft.com
 


Kwikstat
Data Generator

Generate data sets with continuous, categorical, grouped and correlated data. Great for creating data sets for examples and for quality assurance testing. Data sets are created in standard .CSV format so they can be opened in most statistical programs such as SAS, SPSS, WINKS and into spreadsheet programs such as Microsoft Excel. More info. Order now.

 

SAS Tutorial Menu

Main Tutorial Menu

Numbers

SAS ODS Styles

When you output information to a SAS ODS format, the tables, graphs and text are defined with default colors and fonts. There are several built-in ODS styles that you can select. Each style is based on some theme or purpose. For example the Journal style formats your output in a black and white that is appropriate for inclusion in a journal article. The option to specify a style is

     STYLE=styletype;

This option appears in the ODS statement. For example

      ODS RTF STYLE=JOURNAL;
...some procedures
ODS RTF CLOSE;

To see a listing of the available SAS styles available, use the code:

Proc template; liSt styles; RUN

This output was created using the program (the FERT dataset is the same as in the MEANS tutorial):

ODS RTF;
ODS RTF STYLE=ANALYSIS;
DATA TMP; SET FERT;
WT_IN_ANALYSIS_STYLE=WT;
PROC MEANS MAXDEC=2;
VAR WT_IN_ANALYSIS_STYLE;
CLASS FEEDTYPE;
RUN;
ODS RTF CLOSE;

The following example can help you select which style you want to use. Notice that the style name is in the Analysis Variable designation. For example the variable WT_IN_Analysis_Style means that tha style used was "Analysis."

SAS Styles 1

SAS Styles 2

SAS ODS Styles 3

SAS ODS Styles 4

SAS ODS Styles 5

SAS ODS STYLES 6

SAS ODS Styles 7

SAS ODS Styles 8

SAS ODS Styles 9

SAS ODS Styles 10