我看過很多關於誤差線的問題,但是否有一個簡單的命令可以讓我在 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}