Date: Fri, 10 Jan 1997 11:57:52 -0600
Reply-To: iriemon@DONTMESSWITHTEXAS.COM
Sender: "SAS(r) Discussion" <SAS-L@UGA.CC.UGA.EDU>
From: iriemon@DONTMESSWITHTEXAS.COM
Subject: Re: listing data
To not print the observations, just use the NOOBS option.
PROC PRINT NOOBS;
-Brett Sellars
iriemon@dontmesswithtexas.com
>Date: Fri, 10 Jan 1997 11:35:21 EST
>From: "Karen L. Olson, Ph.D." <OLSON_K@A1.TCH.HARVARD.EDU>
>Subject: listing data
>
>I'm working at home with no SAS manuals (how brave). I'd like to
>list some data, sorted from high to low for lots of variables
>separately. Therefore, I'll get lots of lists of SUBJID VARNAME.
>Can I eliminate the column that says OBS? I don't need to know
>the observation number.
>
>For this task, I sort my file by <varname>, then use:
> PROC PRINT; VAR SUBJID <VARNAME>;
>
>Is there some print or global option to suppress printing obs number?
>
>Thanks,
>Karen Olson
>olson_k@a1.tch.harvard.edu
|