Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

DATA ABC;
INPUT TDATE DATE9. AVG;
CARDS;
18APR2008 150.00
19APR2008 167.00
20APR2008 123.00
21APR2008 145.00
;
RUN

HOW CAN I FIND THE DIFFERENCE BETWEEN AVG OF 18APR2008 ANF
21APR2008??

IF ANY ONE GETS IT PLS TRY TO POST IT.

Answer Posted / nagesh sriram

Hi,
I am think that the difference between the first and last
records value?

data _null_;
set abc end=last;
retain first;
if _n_=1 then first=avg;
if last=1 then do;
diff=first - avg;
put 'The difference is =' diff;
stop;
end;
run;

here _n_=1 is hold the first record in the abc dataset.
Last=1 means is hold the last record in the dataset.

Is This Answer Correct ?    2 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is PDV?

1209


Which command is used to save logs in the external file?

1156


What would be the result of the following SAS function (given that 31 Dec, 2000 is Sunday)?

1205


Describe 5 ways to do a “table lookup” in SAS?

1193


Are you involved in writing the inferential analysis plan? Tables specfications?

2269


What function CATX syntax does?

1258


What is data _null_?

1198


what are the types of interactive display types? : Sas-bi

1151


what are some good sas programming practices for processing very large data sets? : Sas programming

978


Are you involved in writing the inferential analysis plan? Tables specifications?

4009


What are the implications?

1788


For a user to have access to a standard workspace server, is internal authentication alone is sufficient? : sas-grid-administration

1063


what is factor analysis? : Sas-administrator

1147


What is the maximum and minimum length of macro variable

1344


Explain proc univariate?

1108