I am trying to add a prefix end
to all rows in a col ensnp
in a dataframe chrs
:
Name endsnp
Bov001 Bov001
Bov002 Bov001
My expected output must be like that:
Name endsnp
Bov001 endBov001
Bov002 endBov001
I have tried chrs <- transform(chrs, endsnp = sprintf("end", endsnp))
, but I get this output:
Name endsnp
Bov001 end
Bov002 end
Any ideas about my error? Thank you!
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…