오류 막대에 대한 많은 질문을 보았지만 x/y 방향의 모든 점에 일정한 5% 또는 0.1 오류를 추가할 수 있는 간단한 명령이 있습니까? 내가 본 모든 질문에는 내가 원하지 않는 오류를 사용자 정의하기 위한 복잡한 명령이 포함되어 있습니다.
감사합니다! (반복이라면 죄송합니다)
답변1
물론 당신은 이것을 할 수 있습니다. 다음은 (고정) 상대 x 오류와 고정/상수 y 오류를 환경의 모든 플롯에 추가한 PGFPlots 매뉴얼의 예입니다 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}