openHtmlPage | R Documentation |
Open and close an HTML file for writing..
openHtmlPage(name, title="")
closeHtmlPage(con)
name |
Character. File name (without the extension '.html'). |
title |
Character. Value of the |
con |
Connection. |
See example.
For openHtmlPage
, a connections
.
Wolfgang Huber http://www.dkfz.de/abt0840/whuber
fn <- tempfile()
con <- openHtmlPage(fn, "My page")
writeLines("Hello world", con)
closeHtmlPage(con)
readLines(paste(fn, ".html", sep=""))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.