LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (October 2003, week 5)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Wed, 29 Oct 2003 20:02:19 +0000
Reply-To:     sashole@bellsouth.net
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         Paul Dorfman <paul_dorfman@HOTMAIL.COM>
Subject:      Re: SAS code to C code?
Comments: To: Kai.Yang@CSHS.ORG
Content-Type: text/plain; format=flowed

Kai,

Depends. This:

%put Hello, world! ;

is relatively easy to translate, albeit the result would perhaps be just as wordy as the C code underlying the SAS program. Translating this:

ods html open body= rs = ... ; proc tabulate ... ; class a b c ; var x y z ; table ... a simpe table statement ... ; run ; ods html close ;

borders on practically (i.e. resource-wise and time-wise) nearly impossible, even without preserving all the canned functionality the above has. Throw in a couple of statistical procs, and the team you will have to hire to do this plus one needed to prove the results correct will set you back to the realization how downright cheap SAS is compared to how much it can do with things pretty much guaranteed to not go out of kilter. Lots of COBOL shops seem to have realized it even before circa 1999...

Kind regards, ================= Paul M. Dorfman Jacksonville, FL =================

>From: "Yang, Kai" <Kai.Yang@CSHS.ORG> >Reply-To: "Yang, Kai" <Kai.Yang@CSHS.ORG> >To: SAS-L@LISTSERV.UGA.EDU >Subject: SAS code to C code? >Date: Wed, 29 Oct 2003 10:43:12 -0800 > >Hello, >Is there a way to translate the SAS code to C code? >Thank you >Kai

_________________________________________________________________ Send instant messages to anyone on your contact list with MSN Messenger 6.0. Try it now FREE! http://msnmessenger-download.com


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