Detailed description |
Consider a simple example:
a <- matrix(1:4, 2, 2, dimnames=list(c("a", "a")))
x <- xtable::xtable(a)
rownames(x)
[1] "a" "a.1"
xtable turns two "a"-s into "a" and "a.1". It would be preferable for xtable not to change the existing row names.
I can probably figure it out and supply a patch if interested.
|
|