Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a set of data in which looks something like this:

anim <- c(25499,25500,25501,25502,25503,25504)
sex  <- c(1,2,2,1,2,1)
wt   <- c(0.8,1.2,1.0,2.0,1.8,1.4)
data <- data.frame(anim,sex,wt)

data
   anim sex  wt anim2
1 25499   1 0.8     2
2 25500   2 1.2     2
3 25501   2 1.0     2
4 25502   1 2.0     2
5 25503   2 1.8     2
6 25504   1 1.4     2

I would like a zero to be added before each animal id:

data
   anim sex  wt anim2
1 025499   1 0.8     2
2 025500   2 1.2     2
3 025501   2 1.0     2
4 025502   1 2.0     2
5 025503   2 1.8     2
6 025504   1 1.4     2

And for interest sake, what if I need to add 2 or 3 zeros before the animal id's?

Any help would be very much appreciated!

Baz

share|improve this question
1  
Suppose you want to add n zeros before animal ids you just need to do data$anim = paste(rep(0, n), data$anim, sep = "") – Ramnath Apr 28 '11 at 1:17
2  
Related to Keeping Trailing Zeros in R (the first result of searching for "[r] leading zeros"). – Joshua Ulrich Apr 28 '11 at 1:46
@Ramnath, thanks, mate! that one works well for me. – baz Apr 28 '11 at 11:54

2 Answers

up vote 11 down vote accepted

formatC is an alternative.

anim <- 25499:25504
formatC(anim, width = 6, format = "d", flag = "0") 

So is paste.

paste("0", anim, sep = "")
share|improve this answer
thanks alot for the great help. I used formatC to add leading zeros to my anim and it worked well. – baz Apr 28 '11 at 14:08

For a general solution that works regardless of how many digits are in data$anim, use the sprintf function. It works like this:

> sprintf("%04d", 1)
[1] "0001"
> sprintf("%04d", 104)
[1] "0104"
> sprintf("%010d", 104)
[1] "0000000104"

In your case, you probably want: data$anim <- sprintf("%06d", data$anim)

share|improve this answer
1  
Note that sprintf converts numeric to string (character). – aL3xa Apr 28 '11 at 8:54

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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