Simple question,
is there a function to embedded an existing HTML output, in this case a table output from the stargazer package in R into an R Markdown script?
Embedding existing HTML in R markdown
Horrible cluge, but this is what I did to get an html table into a xargian slide (based on another stack overflow answer). The line showed up in the slide unless I stripped it out.
```{r, echo = FALSE, results='asis'}
t <-readLines("your_html.html")
len <- length(t)-1
cat(t[2:len])
```
© 2022 - 2024 — McMap. All rights reserved.
result
to=asis
. – Salineiframe
environment in your Rmd. <iframe src='path/to/your/file/html' ></iframe>. If not, this answer to this question may help. – Saline