Displaying 1 result from an estimated 1 matches for "505e01".
2010 Aug 16
1
Combining values from a data.frame row with matrix rownames.
...ing the index vector to extract the values I need from
the matrix of experimental data.
The seed panel is a row in a data.frame:
print(seed_panel[i,])
V2 V3
1 507D22 518F15
and the variable to add to it is a rowname of the experimental matrix:
print(rownames(Control[j,]))
[1] "505E01"
I haven't found a way to combine these three - I would like a vector
c("507D22","518F15","505E01") - to subscript the matrix of experimental
data.
IndexList <- c(as.vector( seed_panel[ i, ], mode="any"), rownames( Control[
j, ] ) )
Gives:
$V2...