How do you suppress captions for texreg table? I am using Rmarkdown to create a LaTeX file. Here is a simple example:
```{r, echo=FALSE, message=FALSE, results="asis"}
library(texreg)
data <- data.frame(a=c(1,2,3,4), b=c(6,3,4,4))
texreg(lm(a~b, data=data), caption="", custom.note="", float.pos="h!")
```
In the table that I get, there is an inscription below that reads "Table 1:". How can I get rid of it? Thank.
source
share