Gavin Simpson <[EMAIL PROTECTED]> writes: > Ok, lets sort this out. [Not tested as I don't have your data] > > df <- data.frame(resp = cancerv1[, 408], > VARS = as.matrix(cancerv1[, 2:407])
Actually, you _do_ need an I() here: df <- data.frame(resp = cancerv1[, 408], VARS = I(as.matrix(cancerv1[, 2:407]))) otherwise data.frame() will split the matrix into single coloumn variables. -- Bjørn-Helge Mevik ______________________________________________ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.