| Date: | Wed, 11 Nov 1998 10:45:20 -0500 |
| Reply-To: | "F. Joseph Kelley" <jkelley@ARCHES.UGA.EDU> |
| Sender: | "SAS(r) Discussion" <SAS-L@UGA.CC.UGA.EDU> |
| From: | "F. Joseph Kelley" <jkelley@ARCHES.UGA.EDU> |
| Subject: | Re: your mail |
|
| In-Reply-To: | <852566B9.00485493.00@ITSDRF41.DRF-INTRANET> |
| Content-Type: | TEXT/PLAIN; charset=US-ASCII |
|---|
> DATA CURVDATA;
> INPUT CURVE $5. CP1 - CP7;
> CARDS;
> WU411 0.00 1.20 2.41 3.61 4.82 6.02 7.23
> ;
>
> PROC PRINT DATA = CURVDATA;
>
I do not get that as output when I run the program (SAS V 6.12, OS/2 4)
I would recommend you not use a mixture of formatted and unformatted
(list) input though (it worked for me, but I understand the results can be
"unpredictable"). Use an INFORMAT stmt to assign the input format for
CURVE. --Joe
|