home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #19 / NN_1992_19.iso / spool / bit / listserv / sasl / 3911 < prev    next >
Encoding:
Text File  |  1992-08-26  |  666 b   |  26 lines

  1. Comments: Gated by NETNEWS@AUVM.AMERICAN.EDU
  2. Path: sparky!uunet!paladin.american.edu!auvm!SALT.RA.ANL.GOV!SPARAPAN
  3. Message-ID: <9208261800.AA08530@flash.ra.anl.gov>
  4. Newsgroups: bit.listserv.sas-l
  5. Date:         Wed, 26 Aug 1992 13:00:29 CDT
  6. Reply-To:     sparapan@SALT.RA.ANL.GOV
  7. Sender:       "SAS(r) Discussion" <SAS-L@UGA.BITNET>
  8. From:         sparapan@SALT.RA.ANL.GOV
  9. Subject: Re: SAS Graph; Dates on x-axis
  10. Comments: To: SAS-L@uga.cc.uga.edu, SBYRNE@LIVERPOOL.AC.UK
  11. Lines: 13
  12.  
  13. Dear Sas-ler:
  14. Try this.
  15.  
  16. in datastep
  17.  
  18. format day monyy5.;
  19.  
  20. proc gplot;
  21. plot mean*day / haxis='01AUG89'd to '01JUL90'd by month;
  22. run;
  23.  
  24. That should do the trick.  Ignore warnings.
  25. Rodney
  26.