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

I have a data set with the variables VentUnit1-VentUnit151,

 

I have been attempting to use arrays to flag observations in which VentUnit(i) in ('8N-ICU, '8S-NSICU') and VentUnit(i+1) in ('8N-ICU, '8S-NSICU') such as Line#4 in the screenshot.  I'm having trouble trying to code this with do loops and have a feeling I'm taking the wrong approach. 

 

 VentUnitScreenShot.JPG

 

Any thoughts?

 

Thanks.

 

 

1 ACCEPTED SOLUTION

Accepted Solutions
Reeza
Super User
do i=1 to i=151

This is likely wrong and should  be:

 

do i=1 to dim(unit)-1;

Because you're checking i+1 you can only go up to one less than the dimension and you can use the DIM() function to get the number of elements. 

 

You may also want to set CHECK to 0 at the beginning of the loop but otherwise that seems correct.

 

data lines5;
	set lines4;

	array Unit (*) VentUnit1-VentUnit151;

check=0;

		do i=1 to dim(unit)-1;
			if Unit(i) in ('8N-ICU','8S-NSICU') and Unit(i+1) in ('8N-ICU','8S-NSICU') then check+1;
		end;

run;

 

 

 

View solution in original post

4 REPLIES 4
Reeza
Super User

 I'm having trouble trying to code this with do loops and have a feeling I'm taking the wrong approach. 

 

Can you show us the code you're using?

 


@malmario wrote:

I have a data set with the variables VentUnit1-VentUnit151,

 

I have been attempting to use arrays to flag observations in which VentUnit(i) in ('8N-ICU, '8S-NSICU') and VentUnit(i+1) in ('8N-ICU, '8S-NSICU') such as Line#4 in the screenshot.  I'm having trouble trying to code this with do loops and have a feeling I'm taking the wrong approach. 

 

 VentUnitScreenShot.JPG

 

Any thoughts?

 

Thanks.

 

 


 

malmario
Calcite | Level 5
data lines5;
	set lines4;

	array Unit (*) VentUnit1-VentUnit151;

		do i=1 to i=151;
			if Unit(i) in ('8N-ICU','8S-NSICU') and Unit(i+1) in ('8N-ICU','8S-NSICU') then check+1;
		end;

run;
Reeza
Super User
do i=1 to i=151

This is likely wrong and should  be:

 

do i=1 to dim(unit)-1;

Because you're checking i+1 you can only go up to one less than the dimension and you can use the DIM() function to get the number of elements. 

 

You may also want to set CHECK to 0 at the beginning of the loop but otherwise that seems correct.

 

data lines5;
	set lines4;

	array Unit (*) VentUnit1-VentUnit151;

check=0;

		do i=1 to dim(unit)-1;
			if Unit(i) in ('8N-ICU','8S-NSICU') and Unit(i+1) in ('8N-ICU','8S-NSICU') then check+1;
		end;

run;

 

 

 

malmario
Calcite | Level 5

Thank you Reeza!

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 4 replies
  • 1165 views
  • 0 likes
  • 2 in conversation