Functions cbind and rbind. How to remove quotes for the resulting data frame? For example:
my.vector<-c(1,2,3,4,5) my.vector2<-c("window","door","floor","door","floor") my.vector3<-c(6:10) cbind(my.vector,my.vector2,my.vector3) my.vector my.vector2 my.vector3 [1,] "1" "window" "6" [2,] "2" "door" "7" [3,] "3" "floor" "8" [4,] "4" "door" "9" [5,] "5" "floor" "10" Is there a way to get rid of quotes?