
| Features: |
VAR statement |
| Other features: |
DATA step FOOTNOTE statement ODS HTML statement OPTIONS statement TITLE statement |
| Data set: | EXPREV |
options obs=10;
proc print data=exprev;
var country price sale_type; title 'Monthly Price Per Unit and Sale Type for Each Country'; footnote '*prices in USD'; run;
options nodate obs=5;
ods html file='your_file_styles.html';
proc print data=exprev style(header) = {fontstyle=italic color= green} style(obs) = {backgroundcolor=#5959ab color=white} blankline=(count=1 style={backgroundcolor=cx456789});
var country price sale_type;
title 'Monthly Price Per Unit and Sale Type for Each Country'; footnote '*prices in USD'; run;
options nodate pageno=1 linesize=80 pagesize=30 obs=10;
ods html close; ods listing;
proc print data=exprev double;
var country price sale_type;
title 'Monthly Price Per Unit and Sale Type for Each Country'; footnote '*prices in USD'; run;
ods listing close; ods html;
Monthly Price Per Unit and Sale Type for Each Country 1
Sale_
Obs Country Price Type
1 Antarctica 92.6 Internet
2 Puerto Rico 51.2 Catalog
3 Virgin Islands (U.S.) 31.1 In Store
4 Aruba 123.7 Catalog
5 Bahamas 113.4 Catalog
6 Bermuda 41.0 Catalog
7 Belize 146.4 In Store
8 British Virgin Islands 40.2 Catalog
9 Canada 11.8 Catalog
10 Cayman Islands 71.0 In Store
*prices in USD