I have a data frame (all_data) in which I have a list of sites (1...to n) and their scores e.g.
site score
1 10
1 11
1 12
4 10
4 11
4 11
8 9
8 8
8 7
what I want to do is create another column in the data frame that numbers each site in numerical order e.g in the above example from 1 to 3. So all_data would look like:
site score number
1 10 1
1 11 1
1 12 1
4 10 2
4 11 2
4 11 2
8 9 3
8 8 3
8 7 3
I am sure this must be easily solved, but I have not found a way yet. Any help would be greatly appreciated.