rhtml.Rhtml 476 B

12345678910111213141516171819202122
  1. <html>
  2. <head>
  3. <title>Title</title>
  4. </head>
  5. <body>
  6. <p>This is an R HTML document. When you click the <b>Knit HTML</b> button a web page will be generated that includes both content as well as the output of any embedded R code chunks within the document. You can embed an R code chunk like this:</p>
  7. <!--begin.rcode
  8. summary(cars)
  9. end.rcode-->
  10. <p>You can also embed plots, for example:</p>
  11. <!--begin.rcode fig.width=7, fig.height=6
  12. plot(cars)
  13. end.rcode-->
  14. </body>
  15. </html>