I need to create a block variable to keep a tab on changing doses.
subject dose
10002 10MG
10002 10MG
10002 20MG
10002 10MG
10002 10MG
10004 10MG
10004 10MG
10004 10MG
10004 20MG
10004 20MG
I want the final dataset to look like as follows.
subject dose block
10002 10MG 1
10002 10MG 1
10002 20MG 2
10002 10MG 3
10002 10MG 3
10004 10MG 1
10004 10MG 1
10004 10MG 1
10004 20MG 2
10004 20MG 2
any thoughts?
BY groups + FIRST, this assumes your data is sorted as shown.
data want;
set have;
by subject dose notsorted;
if first.subject then block=0;
if first.dose then block+1;
run;
@gp123 wrote:
I need to create a block variable to keep a tab on changing doses.
subject dose
10002 10MG
10002 10MG
10002 20MG
10002 10MG
10002 10MG
10004 10MG
10004 10MG
10004 10MG
10004 20MG
10004 20MG
I want the final dataset to look like as follows.
subject dose block
10002 10MG 1
10002 10MG 1
10002 20MG 2
10002 10MG 3
10002 10MG 3
10004 10MG 1
10004 10MG 1
10004 10MG 1
10004 20MG 2
10004 20MG 2
any thoughts?
BY groups + FIRST, this assumes your data is sorted as shown.
data want;
set have;
by subject dose notsorted;
if first.subject then block=0;
if first.dose then block+1;
run;
@gp123 wrote:
I need to create a block variable to keep a tab on changing doses.
subject dose
10002 10MG
10002 10MG
10002 20MG
10002 10MG
10002 10MG
10004 10MG
10004 10MG
10004 10MG
10004 20MG
10004 20MG
I want the final dataset to look like as follows.
subject dose block
10002 10MG 1
10002 10MG 1
10002 20MG 2
10002 10MG 3
10002 10MG 3
10004 10MG 1
10004 10MG 1
10004 10MG 1
10004 20MG 2
10004 20MG 2
any thoughts?
April 27 – 30 | Gaylord Texan | Grapevine, Texas
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!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.