In R I can access the data in a column vector of a column matrix by the following:
mat2[,1]
Each column of mat2
has a name. How can I retrieve the data from the first column by using the name attribute instead of [,1]
?
For example suppose my first column had the name "saturn". I want something like
mat2[,1] == mat2[saturn]