python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Loading the package('kableExtra')
I'm a new user to rmarkdown and trying to learn how to format better tables for a report.
I had a report using the package "kableExtra" and it was fine. But now I cannot even load the packag...
Carol Netto
Votes: 0
Answers: 0
kable colour row and column cells by position (not cell values)
Given:
library(kableExtra)
df <- iris[c(1:10), c(1:5)]
df
# Sepal.Length Sepal.Width Petal.Length Petal.Width Species
# 1 5.1 3.5 1.4 0.2 setosa
# 2 ...
user63230
Votes: 0
Answers: 0
longtable= T messes up with scaled down table in r markdown pdf
I have a table in my r markdown pdf.
kable(df, "latex", longtable = F, booktabs = T) %>%
kable_styling(latex_options = c("hold_position",
...
Mathica
Votes: 0
Answers: 3
Adding a LaTeX reference label to a table in modelsummary
I'm trying to produce tables in R (not RMarkdown, as this question helps answer) with modelsummary and I'm having a tough time adding reference labels (e.g., tab:hello). As Vincent points out in this ...
Julian
Votes: 0
Answers: 1