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

Hi, i have a dataset with people rolling a dice, and i need to label them with a game number

I have a varible called trialCount. This goes from 1 to 13, and everytime it equals one, its a new game number.

Basically this is the stucture i have - except for game number:

trialCount     totalTrialCount     gamenumber (Dont have, but want!)

     1                    1                         1

     2                    2                         1

     3                    3                         1

     4                    4                         1

     1                    5                         2

     2                    6                         2

     1                    7                         3

     1                    8                         4

     1                    9                         5

     2                    10                       5

     3                    .                         5

     4                    .                         .

     5                                              .

     6

     7

     .

     .    

So basically what i would like is something conceptually like:

When trialcount = 1

then gamenumber = "some loop that counts what game number we are at, and puts that number in"

until trialcount = 1 again, then start over

I can't really work this out. I can do a simple count + 1, first.count, but that dosen't really work here.

Hope you understand where im coming from!

Thanks

toby

1 ACCEPTED SOLUTION

Accepted Solutions
art297
Opal | Level 21

why not just?:

if trialCount eq 1 then GameNumber+1;

View solution in original post

3 REPLIES 3
art297
Opal | Level 21

why not just?:

if trialCount eq 1 then GameNumber+1;

Haikuo
Onyx | Level 15

Exactly, or equally:

Gamenumber+(trialCount eq 1) ;

Haikuo

TMorville
Calcite | Level 5

God i think i had too much coffee this evening.

Thanks for pointing out the obvious.

T

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
  • 3 replies
  • 1578 views
  • 3 likes
  • 3 in conversation