If I make a matrix like so;
m<-matrix(1,dimnames=list('row','column'))
    column
row      1
I can add a new row like so with rbind
m<-rbind(m,row2=2)
     column 
row       1 
row2      2
But... if I have a string variable like
tag<-"row3"
Why can't I used rbind as
m<-rbind(m,tag=3)
where row3 should be and not tag as
     column
row       1
row2      2
tag       3
but want
     column
row       1
row2      2
row3      3
    