1

Here is the data

x <- c(0:10)
y <- c(10:0)
test <- paste(x, y, sep="/")
data.test <- data.frame(x,y,test)

The current output for data.test is 0/10 1/9 2/8 ... I want to make it "0/10 "1/9 "2/8 ...

Biotechgeek
  • 2,383
  • 11
  • 30

0 Answers0