How can I display units (like ms) instead of 10⁻³ when using PFGPlots?
Normally I would load data from a CSV file, scaling it from seconds to something like ms before plotting it is an extra step I would like to avoid.
Here is an example of a plot where it would be useful:
\documentclass[]{article}
\usepackage{pgfplots}
\usepackage{tikz}
\begin{document}
\begin{figure}\centering
\begin{tikzpicture}
\begin{axis}[
title={$V_{{out}}$ versus $t$},
xlabel={$t$},
ylabel={$V_{{out}}$}]
\addplot[color=red,mark=x] coordinates {
(0.0001,-1.531)
(0.0002,-1.6065)
(0.0003,-1.7963)
(0.0004,-2.5868)
(0.0005,-4.0210)
(0.0006, -4.531)
(0.0007,-7.3352)
(0.0008,-11.5088)
(0.0009,-16.1195)
(0.0010,-21.2523)
(0.0011,-26.3903)
};
\end{axis}
\end{tikzpicture}
\end{figure}
\end{document}

