1 / 15

Computing for Research Introduction to SAS ODS

Computing for Research Introduction to SAS ODS. Annie N. Simpson, MSc. Some ODS is “Experimental”. What is ODS?. ODS=Output Delivery System SAS procedures produce output objects

Download Presentation

Computing for Research Introduction to SAS ODS

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Computing for ResearchIntroduction to SAS ODS Annie N. Simpson, MSc.

  2. Some ODS is “Experimental” BMTRY 789 Introduction to SAS Programming

  3. What is ODS? • ODS=Output Delivery System • SAS procedures produce output objects • ODS allows these objects to be wrangled, organized, and used in many ways…printing, producing graphics files, creating new data from Procedures, etc. BMTRY 789 Introduction to SAS Programming

  4. ODS Output to files… Odsrtffile=‘complete file path’; Procedures you want written out to the file; ODSrtfclose; (may replace all “rtf” with “pdf” or “html”) BMTRY 789 Introduction to SAS Programming

  5. ProcFormat; Value $coffee 'esp'='Espresso' 'cap'='Cappuccino' 'kon'='Kona' 'ice'='Ice Coffee' ; Value $Deliv 'w'='Walk-in' 'd'='Drive-up' ; Run; Odsrtffile = ‘C:\Data\CoffeeFreq.rtf’; ProcFreqData = coffee; Tables TypeD TypeD*TypeC; Format TypeD $Deliv. TypeC $coffee.; ; Run; ODSrtfclose; BMTRY 789 Introduction to SAS Programming

  6. Do the Proc gPlot Demo… BMTRY 789 Introduction to SAS Programming

  7. ODS Trace • Use ODS Trace to find out what OBJECTS SAS is creating when you run a PROC or DATA step. • Knowing this information will allow you to select only the information you want to work with. BMTRY 789 Introduction to SAS Programming

  8. ODS Trace ***Trace Results will be in the LOG***; ODS TRACE ON; *Procedures and/or Data steps go here; ODS TRACE OFF; ***Trace Results will be in the Listing***; ODS TRACE ON / Listing; *Procedures and/or Data steps go here; ODS TRACE OFF; BMTRY 789 Introduction to SAS Programming

  9. ODS Trace ODSTraceon; ProcFreqData = coffee; Tables TypeD /chisq; Tables TypeD*TypeC; Format TypeD $Deliv. TypeC $coffee.; Label TypeC = "Type of Coffee" TypeD = "Type of Delivery" ; Run; ODSTraceoff; BMTRY 789 Introduction to SAS Programming

  10. BMTRY 789 Introduction to SAS Programming

  11. Can use this info to output almost any Procedure results into a new output data set… BMTRY 789 Introduction to SAS Programming

  12. Libname annie “C:\DATA”; ODSOutput"One-Way Frequencies"=Annie.Freqs; ProcFreqData = coffee; Tables TypeD /chisq; Tables TypeD*TypeC; Format TypeD $Deliv. TypeC $coffee.; Label TypeC = "Type of Coffee" TypeD = "Type of Delivery" ; Run; ODSOutputclose; BMTRY 789 Introduction to SAS Programming

  13. ODS Graphics • Basic code is: ODS graphics on; procregdata=fitness; model Oxygen=RunTime Age RestPulse; run; Quit; ODS graphics off; BMTRY 789 Introduction to SAS Programming

  14. ODS Graphics • How do we Name graphs? • How do we Save graphs? • How do we Change styles? • How do we Edit graphs? • Lets Take a look at the ODS demo sample code… BMTRY 789 Introduction to SAS Programming

  15. Insert .gif Image Here… BMTRY 789 Introduction to SAS Programming

More Related