I am having difficulties with R2HTML. If I try to generate a HTML file with the 
below code, the titles, horizontal line, and scatter plot are there, but the 
data summary [summary(iris)] is not. 

---

library(R2HTML)
HTMLStart(file="myreport", extension="html", echo=FALSE, HTMLframe=TRUE)

HTML.title("Data Description", HR=3)
summary(iris) 

HTMLhr()

HTML.title("Scatter Plot", HR=3)
plot(iris$Sepal.Length~iris$Sepal.Width)
HTMLplot() 

HTMLStop()

---

How do I add summary data to a HTML file?

Thanks for any help you can provide
Regina Schinner
______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to