Revision history  [back]

*text editor* **bold question**

I have a small question. Suppose I run the following code.

#Dummy model:
set.seed(1)
dummy_model <- lm(rnorm(100) ~ rnorm(100))

#Table:
modelsummary(
  dummy_model,
  output = "latex",
  fmt  = 3,
  estimate = "{estimate}",
  gof_omit = 'DF|Deviance|R2|AIC|BIC|Log.Lik.|Std.Errors|FE|Num.Obs.|F|RMSE',
  title = "\\label{my_label}My Table",



 stars = FALSE,
  booktabs = TRUE,
)

Instead of getting my_label I get my_label. Is there a way to get a correct label?!!!!!