Re: [R] Storing vectors as vectors in a list without losing each individual vector

2014-10-14 Thread David L Carlson
If you just want to plot the various combinations of a set of variables/columns, you don't need a list, just another data frame/matrix with the combinations of the column numbers you want to plot: > df <- matrix(rnorm(100), 10, 10) > df <- data.frame(df) > comb <- expand.grid(7:10, 7:10) > comb

Re: [R] Storing vectors as vectors in a list without losing each individual vector

2014-10-14 Thread Henrik Bengtsson
On Oct 13, 2014 11:58 PM, "Patricia Seo" wrote: > > Hi everyone, > > My help request is similar to what was asked by Ken Termiso on April 18th, 2005. Link here: https://stat.ethz.ch/pipermail/r-help/2005-April/069729.html > > Matt Wiener answered with suggesting a vector list where you hand type e