LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (September 1997, week 5)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:   Tue, 30 Sep 1997 10:47:35 -0700
Reply-To:   "M. Fang" <fangm@UVIC.CA>
Sender:   "SAS(r) Discussion" <SAS-L@UGA.CC.UGA.EDU>
From:   "M. Fang" <fangm@UVIC.CA>
Subject:   ratio
Content-Type:   TEXT/PLAIN; charset=US-ASCII

Bill:

Try this to do your ratio:

data ratio; set your dataset; array ratio(250) r1-r250; array v(250) v1-v250; do t=1 to 250; ratio(t)=v(t)/pressure*100; end; run;

Minot


Back to: Top of message | Previous page | Main SAS-L page