Tracking expression history with the histry package

To turn on history tracking, we simply load the histry package:

library(histry)

After this, all successfully executed top-level expressions will be tracked, both in the interactive session and within the weaving/rendering of dynamic reports by knitr or rmarkdown.

We now include the content of the minimal Rmd example from the knitr documentation. At the end of this vignette we will call histry() to see that it captured all of evaluated expressions.

Start content from 001-minimal.Rmd by Yehui Xie

A minimal R Markdown example

A quote:

Markdown is not LaTeX.

To compile me, run this in R:

library(knitr)
knit('001-minimal.Rmd')

See output here.

code chunks

A paragraph here. A code chunk below (remember the three backticks):

1+2
.4-.7+.3 # what? it is not zero!

graphics

It is easy.

plot(1:10)
hist(rnorm(1010))

inline code

Yes I know the value of pi is r pi, and 2 times pi is r 2*pi.

math

Sigh. You cannot live without math equations. OK, here we go: $\alpha+\beta=\gamma$. Note this is not supported by native markdown. You probably want to try RStudio, or at least the R package markdown, or the function knitr::knit2html().

nested code chunks

You can write code within other elements, e.g. a list

  1. foo is good r strsplit('hello indented world', ' ')[[1]]
  2. bar is better

Or inside blockquotes:

Here is a quote, followed by a code chunk:

r x = 1:10 rev(x^2)

end content from 001-minimal.Rmd by Yehui Xie

Viewing the expression history

    histry()


Try the histry package in your browser

Any scripts or data that you put into this service are public.

histry documentation built on May 2, 2019, 8:51 a.m.