Examples for 'XML::toHTML'


Create an HTML representation of the given R object, using internal C-level nodes

Aliases: toHTML toHTML,vector-method toHTML,matrix-method toHTML,call-method

Keywords: IO programming

### ** Examples

 cat(as(toHTML(rnorm(10)), "character"))
<table>
  <tr>
    <th>-0.9455907</th>
    <th>-0.5083057</th>
    <th>-0.3283887</th>
    <th>0.2789943</th>
    <th>-1.53717</th>
    <th>1.412141</th>
    <th>1.775771</th>
    <th>0.1723625</th>
    <th>0.9088542</th>
    <th>2.038894</th>
  </tr>
</table>

[Package XML version 3.99-0.10 Index]