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.

link|improve this question

please improve your question . – Mian_Khurram_Ijaz May 24 '11 at 15:28
this is the factor construct in R, I believe. – JD Long May 24 '11 at 15:35
feedback

3 Answers

up vote 4 down vote accepted

Try Data$number <- as.numeric(as.factor(Data$site))

On a sidenote : the difference between the solution of me and @Chase on one hand, and the one of @DWin on the other, is the ordering of the numbers. Both as.factor and factor will automatically sort the levels, whereas that doesn't happen in the solution of @DWin :

Dat <- data.frame(site = rep(c(1,8,4), each = 3), score = runif(9))

Dat$number <- as.numeric(factor(Dat$site))
Dat$sitenum <- match(Dat$site, unique(Dat$site) ) 

Gives

> Dat
  site     score number sitenum
1    1 0.7377561      1       1
2    1 0.3131139      1       1
3    1 0.7862290      1       1
4    8 0.4480387      3       2
5    8 0.3873210      3       2
6    8 0.8778102      3       2
7    4 0.6916340      2       3
8    4 0.3033787      2       3
9    4 0.6552808      2       3
link|improve this answer
+1 - beat me to the punch! – Chase May 24 '11 at 15:36
perfect. Thanks, even more simple than I thought. – Gab_27 May 24 '11 at 15:38
when you use as.factor() are the levels automatically sorted? – Brandon Bertelsen May 24 '11 at 15:55
@Brandon : Indeed, also when you use factor. The solution that doesn't do the sorting, is the one of DWin. Added an example to the question. – Joris Meys May 24 '11 at 16:32
feedback

This should be fairly efficient an understandable:

Dat$sitenum <- match(Dat$site, unique(Dat$site) )  
link|improve this answer
+1 nice solution – Joris Meys May 24 '11 at 16:34
feedback

You can turn site into a factor and then return the numeric or integer values of that factor:

dat <- data.frame(site = rep(c(1,4,8), each = 3), score = runif(9))
dat$number <- as.integer(factor(dat$site))
dat

  site     score number
1    1 0.5305773      1
2    1 0.9367732      1
3    1 0.1831554      1
4    4 0.4068128      2
5    4 0.3438962      2
6    4 0.8123883      2
7    8 0.9122846      3
8    8 0.2949260      3
9    8 0.6771526      3
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.