scientific notation for R/latex

[This article was first published on Dan Kelley Blog/R, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

Motivation

Using R within a latex document can be a component of reproducible research, offering (a) some assurance against typographical errors in transcribing results to the latex file and (b) the ability for others to reproduce the results.

For example, one might like to explain how close the computed integral of the Witch of Agnesi function

1
2
woa <- function(x, a=1) 8 * a^3 / (x^2 + 4*a^2)
integrate(woa, -Inf, Inf)
## 12.56637 with absolute error < 1.3e-09

is to the true value of $4pi$. One way to do that is to compute the mismatch

1
2
estimate <- integrate(woa, -Inf, Inf)$value
theory <- 4 * pi

and to write something like dots the misfit is Sexpr{abs(estimate-theory)} in latex. However, the slew of digits is not especially useful, and the computer-type exponential notation is not conventional in written work.

It would be good to have a function that writes such results in latex format.

Methods

A trial function is below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
scinot <- function(x, digits=2, showDollar=FALSE)
{
    sign <- ""
    if (x < 0) {
        sign <- "-"
        x <- -x
    }
    exponent <- floor(log10(x))
    if (exponent) {
        xx <- round(x / 10^exponent, digits=digits)
        e <- paste("\\times 10^{", as.integer(exponent), "}", sep="")
    } else {
        xx <- round(x, digits=digits)
        e <- ""
    }
    if (showDollar) paste("$", sign, xx, e, "$", sep="")
    else paste(sign, xx, e, sep="")
}

and a latex/sweave test use is

Limits may be infinite if set to texttt{Inf}, e.g. for the witch of Agnesi
function
<<>>=
woa <- function(x, a=1)
    8 * a^3 / (x^2 + 4*a^2)
integrate(woa, -Inf, Inf)
@
<<results=hide, echo=false>>=
woa <- function(x, a=1)
    8 * a^3 / (x^2 + 4*a^2)
i <- integrate(woa, -Inf, Inf)$value
err <- abs((i - 4 * pi) / (4 * pi))
@
the results differ from the true value $4pi$ by $Sexpr{scinot(err, 0)}$.

which yields as shown in the screenshot below. (Note that there is some colourization and margin decoration that is not described by the code given above.)

scinot.png

References and resources

  1. R source code used here: 2015-03-22-scinot.R.

  2. Jekyll source code for this blog entry: 2015-03-22-scinot.Rmd

To leave a comment for the author, please follow the link and comment on their blog: Dan Kelley Blog/R.

R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

Never miss an update!
Subscribe to R-bloggers to receive
e-mails with the latest R posts.
(You will not see this message again.)

Click here to close (This popup will not appear again)