1

I'm trying to hide the titles for each by group in my ODS output. Code:

ods noproctitle;
ods html ;

proc sort data=sashelp.class out=class;
  by sex;
run; 

proc freq data=class;
  by sex;
  tables sex / list;
run; 

Specifically, the titles I'm trying to hide are:

Sex=F

and

Sex=M

Robert Penridge
  • 8,424
  • 2
  • 34
  • 55

1 Answers1

3

Look at the BYLINE/NOBYLINE option.

options nobyline;

Here's the documentation reference http://support.sas.com/documentation/cdl/en/lesysoptsref/69799/HTML/default/viewer.htm#n1hr2wb7h5g6twn1gtt5r4zjsg39.htm

Reeza
  • 20,510
  • 4
  • 21
  • 38
  • Argh, my google-fu failed me. Thanks... I had assumed the option was related to the proc, ODS, or the by statement somehow. I never thought to look at the regular options. Also, I'd rather not say how much time I spent looking for this =P – Robert Penridge Jan 11 '17 at 22:00
  • I recalled the name, but I expected to find it under ODS as well and it took me a while to find the reference. And I found it only because I knew to look for that term in the first place! – Reeza Jan 12 '17 at 02:42