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

Hi,

I am wondering if it is possible to create elements in arrays. I have the following code. I believe _1 _2 _0 are created in this step. Also I am wondering whether "do over col" is same as  "do i = 1 to dim(col);

Could you please clarify.

data den;

   set den ;

  array col _1 _2 _0 _99 _999;

  do over col;

    if col=. then col=0;

  end;

run;

Thanks,

Sam.

1 ACCEPTED SOLUTION

Accepted Solutions
art297
Opal | Level 21

With a slight modification of your code you can see that the answers are both yes .. sort of.  First, try the following:

data den;

  array col _1 _2 _0 _99 _999;

  do over col;

    counter+1;

    col=counter;

  end;

run;

As you can see after running the code, the five variables do indeed get created, and their assignments in the do over loop are clearly sequential.

I say "sort of" though, as you can only use do over with an implicitly defined array (i.e., where you don't define the number of elements in brackets in the array declaration) and, with implicitly defined arrays, you can't refer to them by number (e.g., col(1)).

View solution in original post

2 REPLIES 2
art297
Opal | Level 21

With a slight modification of your code you can see that the answers are both yes .. sort of.  First, try the following:

data den;

  array col _1 _2 _0 _99 _999;

  do over col;

    counter+1;

    col=counter;

  end;

run;

As you can see after running the code, the five variables do indeed get created, and their assignments in the do over loop are clearly sequential.

I say "sort of" though, as you can only use do over with an implicitly defined array (i.e., where you don't define the number of elements in brackets in the array declaration) and, with implicitly defined arrays, you can't refer to them by number (e.g., col(1)).

sampath
Calcite | Level 5

I understood clearly. Thank you very much Arthur.

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

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
  • 2 replies
  • 1234 views
  • 4 likes
  • 2 in conversation