We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using pander 0.5.2, I can't seem to be able to switch off bold row names:
require(pander) pander(mtcars[1:3, ], emphasize.rownames=FALSE) ## Output minus some blank lines ## -------------------------------------------------------- ## mpg cyl disp hp drat wt ## ------------------- ----- ----- ------ ---- ------ ----- ## **Mazda RX4** 21 6 160 110 3.9 2.62 ## **Mazda RX4 Wag** 21 6 160 110 3.9 2.875 ## **Datsun 710** 22.8 4 108 93 3.85 2.32 ## -------------------------------------------------------- ## Table: Table continues below ## -------------------------------------------------- ## qsec vs am gear carb ## ------------------- ------ ---- ---- ------ ------ ## **Mazda RX4** 16.46 0 1 4 4 ## **Mazda RX4 Wag** 17.02 0 1 4 4 ## **Datsun 710** 18.61 1 1 4 1 ## --------------------------------------------------
If I cut down on the columns, so the table gets shorter and does not split, it works:
pander(mtcars[1:3, 1:3], emphasize.rownames=FALSE) ## ---------------------------------- ## mpg cyl disp ## --------------- ----- ----- ------ ## Mazda RX4 21 6 160 ## Mazda RX4 Wag 21 6 160 ## Datsun 710 22.8 4 108 ## ----------------------------------
and the same with setting split.table large enough:
split.table
pander(mtcars[1:3, ], emphasize.rownames=FALSE, split.table=200) ## ----------------------------------------------------------------------------------- ## mpg cyl disp hp drat wt qsec vs am gear carb ## --------------- ----- ----- ------ ---- ------ ----- ------ ---- ---- ------ ------ ## Mazda RX4 21 6 160 110 3.9 2.62 16.46 0 1 4 4 ## Mazda RX4 Wag 21 6 160 110 3.9 2.875 17.02 0 1 4 4 ## Datsun 710 22.8 4 108 93 3.85 2.32 18.61 1 1 4 1 ## -----------------------------------------------------------------------------------
The text was updated successfully, but these errors were encountered:
2349f62
No branches or pull requests
Using pander 0.5.2, I can't seem to be able to switch off bold row names:
If I cut down on the columns, so the table gets shorter and does not split, it works:
and the same with setting
split.table
large enough:The text was updated successfully, but these errors were encountered: