Help in using PCR
Gavin Simpson <gavin.simpson at ucl.ac.uk> 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