BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Engel
Calcite | Level 5

Dear SAS experts, In my data set (animal behavior) I would like to create a new variable:  the time interval between two events. There exists the variables 'first (starting time of  behavior)’ and 'Last (ending time of behavior)' per line (see attached table). I am interested in the time interval between 'last' in line n and 'first' in line n + 1. I really appreciate your help 🙂

1 ACCEPTED SOLUTION

Accepted Solutions
art297
Opal | Level 21

Can't you just use the lag function?  e.g.:

libname art "c:\art";

data want;

  format difference time8.;

  set art.inter;

  by datum name;

  last_last=lag(last);

  if first.name then call missing(last_last);

  difference=first-last_last;

run;

View solution in original post

5 REPLIES 5
art297
Opal | Level 21

Can't you just use the lag function?  e.g.:

libname art "c:\art";

data want;

  format difference time8.;

  set art.inter;

  by datum name;

  last_last=lag(last);

  if first.name then call missing(last_last);

  difference=first-last_last;

run;

Haikuo
Onyx | Level 15

Echo with Art, you can also use dif(); sorry, Art, for stealing your code:

data want;

  format difference time8.;

  set art.inter;

  by datum name;

/*  last_last=lag(last);

  if first.name then call missing(last_last);*/

  difference=ifn(first.name,.,dif(last));

run;

Haikuo

art297
Opal | Level 21

: I don't mind your "stealing" the code, but your solution doesn't meet the OP's requirements.  You are taking the difference between last and the previous last.  The OP wanted the difference between the current first and the previous last.

Haikuo
Onyx | Level 15

Oops, my bad. Now I know why you choose to use lag(). Haikuo

Engel
Calcite | Level 5

Dear Arthur, thank you very much! It is exactly what I wanted. Best regards from Germany Engel

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

Register now

Discussion stats
  • 5 replies
  • 2043 views
  • 0 likes
  • 3 in conversation