Reputation: 2561
I would like to give vertical lines between columns in the table being rendered. It shows on the R console. But not in the html document.
> kable(data.frame(1:10,11:20,21:30))
| X1.10| X11.20| X21.30|
|-----:|------:|------:|
| 1| 11| 21|
| 2| 12| 22|
| 3| 13| 23|
| 4| 14| 24|
| 5| 15| 25|
| 6| 16| 26|
| 7| 17| 27|
| 8| 18| 28|
| 9| 19| 29|
| 10| 20| 30|
I would also like to the shift the table to the left. I can make it another question if needed.
Upvotes: 2
Views: 2632