October 2009
Beginner
636 pages
13h 35m
English
When you view HTML output in a Web browser, you see your SAS results in the browser main display area. You also see your SAS titles above your output in the browser window. There is a title bar at the top of the browser that also contains some text.
What you see in the title bar depends on your browser. By default, HTML created by ODS has the text "SAS Output" displayed in the title bar. Following that might be text such as "Microsoft Internet Explorer" or "Mozilla Firefox."
For example, if you run the following code, you get the output shown in Figure 3.19.
ODS HTML BODY='body.html'; title 'Quarterly Report'; title2 'Hours Billed by Customer'; proc means data=Billings nonobs mean sum maxdec=1; class CustomerName; var ...
Read now
Unlock full access