Motivation: I often want to paste the results of a quick analysis using R Markdown into a StackExchange site. This includes the R-tag on Stack Overflow, Cross Validated, or even a domain specific analysis on sites like Cognitive Sciences Stack Exchange (e.g., this quick analysis of OECD life index data).
Problems with default conversion:
The default markdown output of knitr
is not suitable for inclusion on StackExchange.
The main problems I can see are that
I.e., the chunks look like this:
```r
some code
```
and output looks like this
```
## some output
## ...
```
There might also be other specific issues to consider, such as
What is a good command for converting R Markdown into Markdown (or HTML) suitable for simple inclusion into Stack Exchange sites?
I think an ideal command would be a one-liner that takes an R Markdown file and generates a file where the entire content can be pasted directly into Stack Exchange to yield a well-formatted question or answer.
I share this simple rmd file with a couple of code chunks, a figure, and an equation as a test example.
Initial thoughts: Hosting of images on imgur would presumably sort out the issue with images. This can be done by including the following in the R Markdown file, but it would probably be simpler if this instruction was incorporated into some one-liner command.
``` {r }
opts_knit$set(upload.fun = imgur_upload)
````
It might be worth considering whether HTML or Markdown is the better format for pasting into StackExchange. The markdown
package provides a lot of flexibility.
R Markdown is an extension of the markdown syntax. R Markdown files are plain text files that typically have the file extension . Rmd . They are written using an extension of markdown syntax that enables R code to be embedded in them in a way which can later be executed.
Technically, R markdown is a variant of another language (yet another language!) called Markdown and both are a type of 'markup' language. A markup language simply provides a way of creating an easy to read plain text file which can incorporate formatted text, images, headers and links to other documents.
Here is a utility function that should get you started. It sets auto uploads to imgur, as well as markdown rendering of source code using tabs instead of fenced blocks. You can enhance this function to add other options that would be useful.
stackify <- function(rmd_file, ...){
require(knitr)
opts_knit$set(upload.fun = imgur_upload)
render_markdown(strict = TRUE)
out <- knit(rmd_file, ...)
return(invisible(out))
}
UPDATE: I tested this function on your test file, and it renders well on stats.stackexchange.com which is mathjax
enabled.
Although I'd still like to read other suggestions I hacked together this script using @Ramnath's answer as a starting point. It outputs a HTML fragment rather than Markdown.
Rscript -e 'rmd_file <- dir(pattern="rmd"); md_file <- sub("rmd", "md", rmd_file); html_file <- sub("rmd", "html", rmd_file); require(methods); require(knitr); require(markdown); opts_knit$set(upload.fun = imgur_upload); knit(rmd_file); markdownToHTML(md_file, html_file, options="fragment_only") '
rmd
file in the working directory. I imagine that selecting the rmd file could be done in a more sophisticated way.knitr
and markdown
packages are installed.methods
package needs to be loaded.The result looks pretty good. It overcomes the issue of excessive blank lines. However, the output is not markdown, which makes the result harder to edit.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With