HTMLInsertGraph | R Documentation |
Write the HTML <img> tag to an output, so that a existant graph could be displayed in the HTML report
HTMLInsertGraph(GraphFileName="", Caption="", GraphBorder=1,
Align="center", WidthHTML=500, HeightHTML=NULL,
file=HTMLGetFile(), append=TRUE,...)
GraphFileName |
Name of the target graph (GIF, JPEG or PNG) |
Caption |
If non empty, text to be written under the graph, as its caption |
GraphBorder |
Size of the border, in pixels |
Align |
Alignment of the graph (center, left or right) |
WidthHTML |
Width of the image in HTML |
HeightHTML |
Height of the image in HTML (NULL for not specified) |
file |
Name of the target HTML file (the report) |
append |
logical. If 'TRUE' output will be appended to 'file'; otherwise, it will overwrite the contents of 'file' |
... |
... |
The steps to add a graph to a HTML file are the following: first create the graph, by using a device convenient for web pages, such as GIF, JPEG or PNG. Ensure to write it in the same directory than the HTML file. Then call HTMLInsertGraph.
no value returned.
Eric Lecoutre
HTMLplot
directory=tempdir()
HTMLoutput=file.path(directory,"output.html")
graph1="graph1.png"
# Write graph to a file
## Not run: png(file.path(directory,graph1))
## Not run: plot(table(rpois(100,5)), type = "h", col = "red",
lwd=10,main="rpois(100,lambda=5)")
## End(Not run)
## Not run: dev.off()
# Insert graph to the HTML output
HTMLInsertGraph(graph1,file=HTMLoutput,caption="Sample discrete distribution plot")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.