エラー バーに関する質問をたくさん見てきましたが、たとえば、x/y 方向のすべてのポイントに一定の 5% または 0.1 のエラーを追加できる簡単なコマンドはありますか。私が見た質問にはすべて、それぞれのエラーをカスタマイズするための複雑なコマンドがありますが、これは必要ありません。
ありがとうございます!(重複してたらごめんなさい)
答え1
もちろん、これは可能です。ここでは、PGFPlots マニュアルから改変した例を示します。環境のすべてのプロットに、(固定) 相対 x エラーと固定/定数 y エラーが追加されていますaxis
。
% used PGFPlots v1.15
\documentclass[border=5pt]{standalone}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}
\begin{axis}[
error bars/x dir=both,
error bars/x fixed relative=0.5,
error bars/y dir=both,
error bars/y fixed=0.1,
]
\addplot table {
x y
0 0
0.1 0.1
0.2 0.2
0.5 0.5
1 1
};
\addplot+ [
domain=0:1,
samples=5,
] {x^2};
\end{axis}
\end{tikzpicture}
\end{document}