matrix and table names / dimnames
Probably my question is answered somewhere but I have used my searching resources before asking. I have a sample table in R : munic Gender Mun1 Mun2 female 146980 285797 male 140436 270084 When I use dimnames(sample) I get the following: > dimnames(sample) $Gender [1] "female" "male" $munic [1] "Mun1" "Mun2" And I want to create one exactly alike. So I do the following: Mat<-matrix(c(148470,24721,22829,24777,26137,43169,49613,40406,48337,34296,19492,+ 176712, 27406, 23010, 25487, 27064, 48349, 52140, 44335, 50908, 35814, 18825), nrow=2) colnames(Mat) <-c("mun_5","mun_1","mun_2","mun_3","mun_4"