[Tex/LaTex] Engineering notation (scientific) as tick labels with pgfplots (maybe via siunitx)

engineeringpgfplotssiunitxtickstikz-pgf

I would like to have numbers on the ticks labels formatted in engineering notation — but unlike in How to control pgfplots axis scaling for engineering notation (multiple of 3 exponent)?, I would like not to have scaled ticks (that is, each tick should display its 10^x exponent, if appropriate).

I got to this MWE:

\documentclass{article}
\usepackage{pgfplots}
\pgfplotsset{compat=1.5.1}
\usepackage{tikz}
\usepackage{siunitx}
\usepackage[pdftex,active,tightpage]{preview}

\begin{document}

\pgfkeys{
  /pgf/number format/sci generic={mantissa sep={\!\cdot\!},exponent={10^{#1}}},
}

\begin{preview}
\begin{tikzpicture}
\begin{axis}[
  axis x line=bottom,
  axis y line=left,
  scaled ticks=false,
  xmode=log,
  /pgfplots/xtick={0,0.5,1,5,10,50,100,500,1000,5000,10000,50000,100000},
  x tick label style={rotate=-50, anchor=west, align=center, font=\small},
  xmin=0, xmax=200000,
  ymin=0,
  visualization depends on={rawx \as \myx},
  nodes near coords={($\pgfmathprintnumber\myx$, \textcolor{black}{\num[scientific-notation = engineering,round-mode=places,round-precision=2,zero-decimal-to-integer]{\myx}}\color{blue})},
]

\addplot[color=blue,mark=*] coordinates
  { (0.5,1) (1,2) (5,3) (10,4) (50,5) (100,6) (500,7)
    (1000,8) (5000,9) (10000,10) (50000,11) (100000,12)};

\end{axis}
\end{tikzpicture}
\end{preview}

\end{document}

… which results with this rendering:

test01.png

So, I have:

  • 0.5, 1, 5, 10, 50, 100, 500, 1000, 5000, 10000, 50000, 100000 – as the original sequence for the x ticks (and labels),
  • 10-0.3, 100, 100.7, 101, … – as the x tick labels as done by pgfplots
  • 0.5; 1; 5; … 50,000; 1·105 – as output by \pgfmathprintnumber (left, blue)
  • 500×10-3, 1, 5, …, 50×103, 100×103 – as output by \num of siunitx (right, black)

What I'd like to have, is that instead of the current x ticks label numbers, the siunitx engineering notation format is rendered for the x ticks labels – but: with \!\cdot\! as mantissa separator, instead of \times; and without thousands separator. How could I achieve this?

Best Answer

Ok, I think I got most of it - except, now there is an "exponentiation roundtrip" which causes rounding errors (see pic below); if anyone knows how to avoid it that, please post an answer.

test011.png

It is those 500.12e-3 and 499.97 xtick values that show the rounding errors; the problem here is that the \tick variable here is logarithm'd (actually, ln'd), so I have to exponentiate it -- and that requires use of fpu, and then coming back to fixed point; and by the time we've gotten back to the original xtick values domain, those values are already "corrupted": the \typeout shows:

tick -0.69316,  tmp 0.50012
tick  0.0,      tmp 1.0000000000
tick  1.60942,  tmp 4.99974000000000
tick  2.30258,  tmp 10.000000000
tick  3.912,    tmp 49.9974000000000
tick  4.60516,  tmp 100.00000000
tick  6.21458,  tmp 499.974000000000
tick  6.90775,  tmp 1000.0000000
tick  8.51717,  tmp 4999.74000000000
tick  9.21033,  tmp 10000.000000
tick 10.81975,  tmp 49997.4000000000
tick 11.51291,  tmp 100000.00000

Otherwise, it is siunitx's \num that does the engineering notation formatting - through the use of the xticklabel key of the plot.

Here is the MWE:

\documentclass{article}
\usepackage{pgfplots}
\pgfplotsset{compat=1.5.1}
\usepackage{tikz}
\usepackage{siunitx}
\usepackage[pdftex,active,tightpage]{preview}

\begin{document}

\pgfkeys{
  /pgf/number format/sci generic={mantissa sep={\!\cdot\!},exponent={10^{#1}}},
}

% use \newcommand (not \def), so the one (and only)
% argument can be specified in {} (and not in []) brackets
\newcommand{\mynum}[1]{
  % =\pgfmathparse{e^\tick}\pgfmathresult : ! Dimension too large. ; - use exp(x)
  \pgfkeys{/pgf/fpu}% else dimension too large!
  \pgfmathparse{exp(#1)}%
  % \edef\tmp{\pgfmathresult}%
  % \pgfmathprintnumberto{\pgfmathresult}{\tmp}% nope, gives 1Y5.0012e-1]
  \pgfmathfloattofixed{\pgfmathresult}% also outputs in \pgfmathresult
  \edef\tmp{\pgfmathresult}%
  \pgfkeys{/pgf/fpu=false}%
  \typeout{tick #1, tmp \tmp}%
  \num[%
    scientific-notation=engineering,%
    round-mode=places,%
    round-precision=2,%
    zero-decimal-to-integer,%
    group-digits=false,%
    exponent-product=\!\cdot\!,%
  ]{\tmp} %
}

\begin{preview}
\begin{tikzpicture}
\begin{axis}[
  axis x line=bottom,
  axis y line=left,
  scaled ticks=false,
  xmode=log,
  /pgfplots/xtick={0,0.5,1,5,10,50,100,500,1000,5000,10000,50000,100000},
  x tick label style={rotate=-50, anchor=west, align=center, font=\small},
  xmin=0, xmax=200000,
  ymin=0,
  visualization depends on={rawx \as \myx}, % , \tick \as \myxt
  nodes near coords={($\pgfmathprintnumber\myx$, \textcolor{black}{\num[scientific-notation = engineering,round-mode=places,round-precision=2,zero-decimal-to-integer]{\myx}}\color{blue})},
  % cannot use options to \num here, we're already in options,
  % so extra [], like below, will cause "! Missing \endcsname inserted."
%   xticklabel=\num[scientific-notation=engineering,round-mode=places,round-precision=2,zero-decimal-to-integer]{123},
  % so, use a \newcommand ( \mynum ) here:
  xticklabel=\mynum{\tick}, % \myx undefined here, \tick is logarithm'd!
]

\addplot[color=blue,mark=*] coordinates
  { (0.5,1) (1,2) (5,3) (10,4) (50,5) (100,6) (500,7)
    (1000,8) (5000,9) (10000,10) (50000,11) (100000,12)};

\end{axis}
\end{tikzpicture}
\end{preview}

\end{document}