| Date: | Wed, 16 Apr 1997 22:41:52 GMT |
| Reply-To: | jwa@nabaus.com.au |
| Sender: | "SAS(r) Discussion" <SAS-L@UGA.CC.UGA.EDU> |
| From: | jwa@NABAUS.COM.AU |
| Organization: | National Australia Bank |
| Subject: | Re: Plotting Data versus Date and Time |
|---|
Harry,
Having read the data with the correct informats - YYMMDD8. and TIME8., you will
have created a date and time variable in SAS.
You should then create a datetime variable like so :
dtvar=dhms(date,0,0,time);
You can then plot the dtvar.
oop$5k0@niner.apsc.com>, handerso@apsc.com (Harry Anderson) writes:
>
>I have a data set that I can read into SAS (typically Batch Mode) that has
>date represented as 04/14/97 and time as 00:00:00. I am not clear as to what
>I need to do after reading in the values to produce a plot (gplot) that will
>be versus date and time on the x-axis.
>
>Thanks for any suggestions.
>
>
|