Description Usage Arguments Value See Also Examples
Determine if a connection to an HTML page can be written to or not.
1 | validConnection(htmlRep)
|
htmlRep |
An object of class |
Returns TRUE if the page can be written to. If the file handle has been closed, then FALSE.
1 2 3 4 5 6 7 8 9 10 | my.df <- data.frame(EGID = c("103", "104", "105", "106", "107"),
RPKM = c(4, 5, 3, 100, 75),
DE = c("Yes", "Yes", "No", "No", "No"))
html.report <- makeOldHTMLReport(shortName = "my_html_file",
reportDirectory = "reportDirectory")
publish(my.df, html.report)
validConnection(html.report) # Returns TRUE
finish(html.report)
validConnection(html.report) # Returns FALSE
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.