Prev: Many-to-many merge
Next: Proc Insightr Running Error
From: Suzanne_P on 7 Mar 2010 12:36 Help! "N" and values always appear at the bottom of each column of my proc tabulate output. I am not specifying N in the procedure, but N (number of observations) is always output at the bottom of each table created. How do I stop N appearing? I would appreciate any help! Thankyou Suzanne.
From: Arthur Tabachneck on 7 Mar 2010 13:07 Suzanne, I'm sure it will be easier for someone on SAS-L to respond if you provide the list with some sample data (in the form of a datastep) and the code you are using to run the proc tabulate. Art ------------ On Mar 7, 12:36 pm, Suzanne_P <p2...(a)safe-mail.net> wrote: > Help! > > "N" and values always appear at the bottom of each column of my proc > tabulate output. I am not specifying N in the procedure, but N (number > of observations) is always output at the bottom of each table > created. > > How do I stop N appearing? I would appreciate any help! > > Thankyou > Suzanne.
From: Killer on 8 Mar 2010 07:28 On Mar 7, 11:07 pm, art...(a)NETSCAPE.NET (Arthur Tabachneck) wrote: > Suzanne, > > I'm sure it will be easier for someone on SAS-L to respond if you > provide the list with some sample data (in the form of a datastep) and > the code you are using to run the proc tabulate. > > Art > ------------ > On Mar 7, 12:36 pm, Suzanne_P <p2...(a)safe-mail.net> wrote: > > > > > Help! > > > "N" and values always appear at the bottom of each column of my proc > > tabulate output. I am not specifying N in the procedure, but N (number > > of observations) is always output at the bottom of each table > > created. > > > How do I stop N appearing? I would appreciate any help! > > > Thankyou > > Suzanne.- Hide quoted text - > > - Show quoted text - Suzane, try this... ods listing; ods html body ="body.html"; proc tabulate data =libref.fileref; class XXXXX; class yyyyy / order=data; var 123; tables XXXXX={label=''STYLE(CLASSLEV)={FOREGROUND=#3366FF BACKGROUND=#FFFFFF}} *{STYLE={FOREGROUND=#3366FF BACKGROUND=#FFFFFF}} All={label='Total'STYLE={FOREGROUND=#3366FF BACKGROUND=#FFFFFF}} *{STYLE={FOREGROUND=#3366FF BACKGROUND=#FFFFFF}}, (YYYYY={label=''STYLE(CLASSLEV)={FOREGROUND=#3366FF BACKGROUND=#FFFFFF}}*{STYLE={FOREGROUND=#3366FF BACKGROUND=#FFFFFF}} *123={label=''}*N={label=''}*f=6.) /BOX= {label='abc'STYLE={FOREGROUND=#3366FF BACKGROUND=#FFFFFF}}; run; ods html close;
|
Pages: 1 Prev: Many-to-many merge Next: Proc Insightr Running Error |