BookmarkSubscribeRSS Feed
abhisegal
Calcite | Level 5
I am trying to get the data difference between occurences of certain call records. the records are identified based on four variables (tid dt_stamp sp_acid lengt_of_call). However there could be multiple instances of records with similar values for these four variables. I need to select one of those instances and find time difference from another record with same tid in past. I am using the code below but keep getting a zero for the time difference inspite of the fact that there is significant gap between the two call occurences. Any help in this regard would be appreciated.


proc sort data=as.uniquenbscalls1106to1007 ;
by tid dt_stamp sp_acid lengt_of_call tm_stamp ;


data as.uniquenbscalls1106to1007 ;

retain prev_tid 0 prevtm_stmp 0 ;
set as.uniquenbscalls1106to1007 ;
by tid dt_stamp sp_acid lengt_of_call ;
if first.tid or first.dt_stamp or first.sp_acid or first.lengt_of_call then do ;

if cl_tid = prev_tid then diff = intck('HOUR',tm_stamp,prevtm_stmp) ;

prevtm_stmp = tm_stamp ;
prev_tid = tid ;
end ;

run ;
1 REPLY 1
deleted_user
Not applicable
I can't see what values are going into the calculation, and neither can you. As soon as you have a previous time stamp that is valid you overwrite it with the current one and lose the ability to repeat the IntCk() calculation.

Look at what rounding is done by IntCk(), and whether 29 minutes is 0 hours or 1 hour. Understand what the funciton will give you, and then look at the data you are sending it. At the point where you calculate the DIFF interval, put the contributing values out to the log so you can review them and verify you have set up the function correctly.

I'm a little mystified at the need to analyse call records for a clinical trial. Or perhaps I have been fortunate not to have foreign accents disturb my dinner with offers for aspirin.

Kind regards

David

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

Health and Life Sciences Learning

 

Need courses to help you with SAS Life Sciences Analytics Framework, SAS Health Cohort Builder, or other topics? Check out the Health and Life Sciences learning path for all of the offerings.

LEARN MORE

Discussion stats
  • 1 reply
  • 925 views
  • 0 likes
  • 2 in conversation