I want to specify multiple columns to save each as a vector, but I don't want a bunch of lines of code just to save each column. For example,
Instead of:
sl <- iris["Sepal.Length"]
sw <- iris["Sepal.Width"]
Something like:
c(sl, sw) <- c(iris["Sepal.Length"], iris["Sepal.Width"])
That's how I expect to be able to do this, but it doesn't work.