X軸が対数であるデータをプロットしようとしています。データは30マイクロ秒から10ミリ秒までの範囲です。X軸の目盛りを次のようにすると、よりきれいに見えます。
{0.1 ms, 1 ms, 10 ms}
よりも
{10^-4 s, 10^-3 s, 10^-2 s}.
つまり、目盛りラベルを固定小数点(指数ではなく)で表示し、スケール(1000 倍)を適用したいのです。
この効果を得るために、私は
\documentclass{standalone}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}
\begin{semilogxaxis}
[xmin=1e-6, xmax=1e-3, domain=1e-6:1e-3,
scaled x ticks=real:1e-3,
xtick scale label code/.code={},
log ticks with fixed point]
\addplot {x};
\end{semilogxaxis}
\end{tikzpicture}
\end{document}
しかし、対数軸は「スケールされた x 目盛り」の指示を無視しているようです。 ご協力いただければ幸いです。
ありがとう、
答え1
x座標のスケールを変更したいようですそれなし共通因子を抽出します。このscaled x ticks
機能の主な使用例は、いくつかのノードに配置される共通の目盛り因子を生成することです。実際、pgfplots には、scaled ticks
通常は使用例がないため、ログ軸に対する組み込みサポートはありません。
しかし、x座標を再スケーリングするとはユースケースであり、次のように実装するのは非常に簡単ですx filter
。
\documentclass{standalone}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}
\begin{axis}[
xmode=log,
log ticks with fixed point,
% for log axes, x filter operates on LOGS.
% and log(x * 1000) = log(x) + log(1000):
x filter/.code=\pgfmathparse{#1 + 6.90775527898214},
]
\addplot table {
0.0001 10
0.001 20
0.01 15
};
\end{axis}
\end{tikzpicture}
\end{document}
答え2
問題は対数軸自体にあるのではなく、オプションlog ticks with fixed point
を無視するスタイルにありますscaled x ticks
。
スケーリングが有効かどうかをチェックし、それを固定小数点の目盛りラベルに適用する、少し修正したバージョンがあります。ただし、欠点があります。これは、異なるスケーリングの対数y軸を使用している場合には機能しません。バグレポートこのために。
\documentclass{article}
\usepackage{pgfplots}
\usepgfplotslibrary{units}
\makeatletter
\pgfplotsset{
/pgfplots/log ticks with fixed point/.style={
/pgfplots/log number format basis/.code 2 args={
\begingroup
\edef\pgfplots@exponent{##2}%
\pgfkeysalso{/pgf/fpu}%
% configure the style to avoid crap like
% 10,000.2 or 0.000999937 :
\pgfqkeys{/pgf/number format}{%
fixed relative,
precision=3,
}%
\ifdim##1pt=10pt
\def\pgfplots@baselog{2.30258509299405}%
\else
\pgfmathparse{ln(##1)}%
\let\pgfplots@baselog=\pgfmathresult
\fi
\ifdefined\pgfplots@scaled@ticks@x@arg\pgfmathfloatparsenumber{\pgfplots@scaled@ticks@x@arg}\else\def\pgfmathresult{1}\fi%
\pgfmathparse{\pgfmathresult*exp(\pgfplots@exponent*\pgfplots@baselog)}%
\pgfmathprintnumber[#1]\pgfmathresult
\endgroup
},
}
}
\makeatother
\begin{document}
\begin{tikzpicture}
\begin{axis}[
xmode=log,
log ticks with fixed point,
scaled x ticks=real:1e3
]
\addplot table {
0.0001 10
0.001 20
0.01 15
};
\end{axis}
\end{tikzpicture}
\end{document}