| Date: | Thu, 25 Jan 2001 13:40:47 -0500 |
| Reply-To: | Gary Winkel <gwinkel1@JUNO.COM> |
| Sender: | "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU> |
| From: | Gary Winkel <gwinkel1@JUNO.COM> |
| Subject: | Re: Proc Univariate question |
|
| Content-Type: | text/plain |
Trying writing an array statement e.g.
array miss v1--v2;
do over miss;
if miss => 88888 then miss = '.';
end;
Gary Winkel
City University of New York
On Thu, 25 Jan 2001 10:16:00 -0500 Chelsea <admin.ra@IOIP.COM> writes:
> SAS gurus:
>
> I want to do Proc Univariate on 62 vriables in a dataset. But the
> data have
> some invalid values like "88888" or "888888" in them. I wonder if I
> can
> simply use a "Where" statement in the Proc Univariate to get rid of
> these
> invalid values, so that they will not show in the final output.
>
> If not, what's the most efficent way to do this?
>
> Thanks!
>
> - chelsea
|