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 ...
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 ...