|
|
Re: Proc tabulate....N defaulting on output
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...@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.
|
|
0
|
|
|
|
Reply
|
art297 (4237)
|
3/7/2010 6:07:51 PM |
|
On Mar 7, 11:07=A0pm, art...@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...@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
=3D"body.html";
proc tabulate data =3Dlibref.fileref;
class XXXXX;
class yyyyy / order=3Ddata;
var 123;
tables
XXXXX=3D{label=3D''STYLE(CLASSLEV)=3D{FOREGROUND=3D#3366FF BACKGROUND=3D#FF=
FFFF}}
*{STYLE=3D{FOREGROUND=3D#3366FF BACKGROUND=3D#FFFFFF}}
All=3D{label=3D'Total'STYLE=3D{FOREGROUND=3D#3366FF BACKGROUND=3D#FFFFFF}}
*{STYLE=3D{FOREGROUND=3D#3366FF BACKGROUND=3D#FFFFFF}},
(YYYYY=3D{label=3D''STYLE(CLASSLEV)=3D{FOREGROUND=3D#3366FF
BACKGROUND=3D#FFFFFF}}*{STYLE=3D{FOREGROUND=3D#3366FF BACKGROUND=3D#FFFFFF}=
}
*123=3D{label=3D''}*N=3D{label=3D''}*f=3D6.)
/BOX=3D {label=3D'abc'STYLE=3D{FOREGROUND=3D#3366FF BACKGROUND=3D#FFFFFF}};
run;
ods html close;
|
|
0
|
|
|
|
Reply
|
Killer
|
3/8/2010 12:28:17 PM
|
|
|
1 Replies
188 Views
(page loaded in 0.045 seconds)
Similiar Articles: Re: proc factor with missing data? - comp.soft-sys.sasRe: Proc SQL help needed please. - comp.soft-sys.sas Re: proc factor with missing data? - comp.soft-sys.sas Re: Proc tabulate....N defaulting on output - comp.soft-sys.sas ... Re: Creating one report with columns based on different subsets ...... 17:04 -0500 This is a natural for PROC TABULATE. ... PROC Freq - Output - comp.soft-sys.sas Proc ... one ... Processing time: O(N(subsets ... Subject: Re: Multiple data ... How to generate a table with proc means - comp.soft-sys.sas ...Hi, I wonder how to direct the output of proc means ... the 3 datasets into one and then use Proc > Tabulate (or ... soft-sys.sas... help - comp.soft-sys.sas Re: proc ... Re: Sample of a bivariate Probability Density Estimation data ...... bivariate kernel density estimate (using default settings) and outputs the density estimate to an output data set. PROC ... Re: Help with panel data analysis - comp.soft ... Proc freq help - comp.soft-sys.sasPROC Freq - Output - comp.soft-sys.sas Proc freq help - comp ... in a Proc Freq? - comp.soft-sys.sas Use proc tabulate ... Re: proc logistic: 'out of memory' - comp.soft-sys ... Is this a macro bug??? - comp.soft-sys.sasDefault is a space. */ ,MNAME=code /* Macro name ... parmv(__LIST__, _req=1,_words=1,_case=N) %if ... macros for path,names, concat, and output export - comp ... Can a procedure contain only a SELECT statement? - comp.databases ...... expecting one of the > following: =A0:=3D), default ... emprec; exit when emptab%notfound; dbms_output ... Re: PROC DATASETS but only when no errors - comp.soft-sys ... Comparison of a Simple Join done by EG and Hand Coded - 22 times ...... put(study,z2.),put(crt,z2.),put (id,z5.)); output ... THIS - BUT THIS WHAT A NAIVE EG USER GOT */ proc sql ... Re: Concatenating Times - comp.soft-sys.sas 22 data ... How to specify a var is null in SAS? - comp.soft-sys.sas ...... A0 if missing(id) then id=3Dtemp; > run; > > The output ... In ORACLE, if they're both null values, the condition ... how to export only few variables using proc export ... C++: PTHREAD_CANCEL_ASYNCHRONOUS and random crash - comp ...... CANCEL_ASYNCHRONOUS, 0); const unsigned n ... check column fo a default value - comp.databases.informix ... sys.sas Surveylogistic help - comp.soft-sys.sas Re: proc ... SUGI 27: Anyone Can Learn PROC TABULATEAnyone Can Learn PROC TABULATE Lauren ... you’re probably asking yourself, “Why use PROC TABULATE? ... Excel and your TABULATE output will be ... SUGI 30 Tutorials... bit of code work and re-work. It is to be expected that the first TABULATE code ... We see that the default statistic ... Code and output is shown: proc tabulate data=test; 7/21/2012 2:03:52 AM
|
|
|
|
|
|
|
|
|