openHtmlPage: Open and close an HTML file for writing.

Description Usage Arguments Details Value Author(s) Examples

View source: R/openHtmlPage.R

Description

Open and close an HTML file for writing..

Usage

1
2

Arguments

name

Character. File name (without the extension '.html').

title

Character. Value of the title tag in the HTML header.

con

Connection.

Details

See example.

Value

For openHtmlPage, a connections.

Author(s)

Wolfgang Huber http://www.dkfz.de/abt0840/whuber

Examples

1
2
3
4
5
  fn <- tempfile()
  con <- openHtmlPage(fn, "My page")
  writeLines("Hello world", con)
  closeHtmlPage(con)
  readLines(paste(fn, ".html", sep=""))

geneplotter documentation built on Nov. 8, 2020, 7:13 p.m.