Kevin Ho
Kevin Ho

Reputation: 107

How to knit HTML into PDF using R?

I would like to transform HTML into PDF using R

I have tried using cat and rmarkdown.

Below is an example from this answer, and my goal is to make it look the same as what it appears in the web

<p>You can use the <a href="http://stat.ethz.ch/R-manual/R-devel/library/base/html/order.html" rel="noreferrer"><code>order()</code></a> function directly without resorting to add-on tools -- see this simpler answer which uses a trick right from the top of the <code>example(order)</code> code:</p>

<pre><code>R&gt; dd[with(dd, order(-z, b)), ]
    b x y z
4 Low C 9 2
2 Med D 3 1
1  Hi A 8 1
3  Hi A 9 1
</code></pre>

<p><em>Edit some 2+ years later:</em>  It was just asked how to do this by column index. The answer is to simply pass the desired sorting column(s) to the <code>order()</code> function:</p>

<pre><code>R&gt; dd[order(-dd[,4], dd[,1]), ]
    b x y z
4 Low C 9 2
2 Med D 3 1
1  Hi A 8 1
3  Hi A 9 1
R&gt; 
</code></pre>

<p>rather than using the name of the column (and <code>with()</code> for easier/more direct access).</p>

Upvotes: 0

Views: 7628

Answers (1)

novica
novica

Reputation: 685

Maybe R -e "rmarkdown::render('input.Rmd',output_file='output.pdf')"

So assuming you have this in a Rmakrdown file:

---
title: "R Notebook"
output:
  pdf_document: default
  html_notebook: default
---


You can use the [`order()`](http://stat.ethz.ch/R-manual/R-devel/library/base/html/order.html) function directly without resorting to add-on tools -- see this simpler answer which uses a trick right from the top of the `example(order)` code:

```{r eval=FALSE}
  R> dd[with(dd, order(-z, b)), ]
    b x y z
  4 Low C 9 2
  2 Med D 3 1
  1  Hi A 8 1
  3  Hi A 9 1 
_``` 

Knitting it will result in a pdf that looks like this: enter image description here

Similarly, if you don't want to create a rmd but use the html, you can do: R -e "rmarkdown::pandoc_convert('input.html', output = 'output.pdf')"

Which will result in a pdf looking like this: enter image description here

Upvotes: 3

Related Questions