LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous (more recent) messageNext (less recent) messagePrevious (more recent) in topicNext (less recent) in topicPrevious (more recent) by same authorNext (less recent) by same authorPrevious page (June 2004, week 1)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Mon, 7 Jun 2004 13:06:52 -0500
Reply-To:     "Dunn, Toby" <tdunn@TEA.STATE.TX.US>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         "Dunn, Toby" <tdunn@TEA.STATE.TX.US>
Subject:      Re: NOFS option in PROC REPORT
Content-Type: text/plain; charset="us-ascii"

OPS forgot to add the following:

NOFS specifies that you are using program mode. In windowing environments, the GDEVICE windows are the default and you must specify NOFS to start GDEVICE in program mode

HTH Toby Dunn -----Original Message----- From: SAS(r) Discussion [mailto:SAS-L@LISTSERV.UGA.EDU] On Behalf Of Dunn, Toby Sent: Monday, June 07, 2004 1:04 PM To: SAS-L@LISTSERV.UGA.EDU Subject: Re: NOFS option in PROC REPORT

From the SAS V9 online help docs: DEVICE= System Option

------------------------------------------------------------------------ --------

Specifies a terminal device driver for SAS/GRAPH software Default: none Valid in: configuration file, SAS invocation, OPTIONS statement, OPTIONS window Category: Graphics: GRAPHICS OS/390 specifics: device-driver-name PROC OPTIONS GROUP= GRAPHICS

------------------------------------------------------------------------ -------- Syntax Details See Also

------------------------------------------------------------------------ --------

Syntax DEVICE=device-driver-name

------------------------------------------------------------------------ --------

Details

To see a list of available device drivers, use the GDEVICE procedure. If you are in the windowing environment, submit the following statements:

proc gdevice catalog=sashelp.devices; run;

If you are running in interactive line mode, noninteractive mode, or batch mode, use the following statements:

proc gdevice catalog=sashelp.devices nofs; list _all_; run;

Can't find any specific example or reference to NOFC used with Proc Report, but would assume it does the above.

HTH Toby Dunn

-----Original Message----- From: SAS(r) Discussion [mailto:SAS-L@LISTSERV.UGA.EDU] On Behalf Of Sufian Sent: Monday, June 07, 2004 12:40 PM To: SAS-L@LISTSERV.UGA.EDU Subject: NOFS option in PROC REPORT

Hiya guys,

wandering if you can help. I was going over a paper from the recent VIEWS 2004 conference in London. In the PROC REPORT document, they use a bit of code I haven't seen before.... I don't seem to be able to find any relevant info on this. They use the NOFS option in PROC REPORT statement. What is NOFS? What does it do?

The code looks like this...

proc report data=views.demog nofs missing headskip headline; column('--' treatment age, ('--' n mean median std min max));

define treatment / group left; define age / analysis; define n / 'n'; define mean / 'Mean' f=8.1; define std / 'SD' f=8.2; define min / 'Minimum'; define max / 'Maximum';

break after treament / skip; rbreak after / ol summarize; run;

Thanks in advance.

Suf.


Back to: Top of message | Previous page | Main SAS-L page