pgfplot 极坐标错误

pgfplot 极坐标错误

我想使用带有错误的极轴用 pgfplot 绘制数据集,但我似乎无法正确完成:

\documentclass{scrartcl}

\usepackage{enumitem}
\usepackage[ngerman]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{graphicx}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{tikz}
\usetikzlibrary{through}
\usetikzlibrary{calc}
\usepackage{euler}
\usepackage{pgfplots}
\usepgfplotslibrary{polar}

\begin{document}

\begin{figure}
\centering
\begin{tikzpicture}
\begin{polaraxis}
\addplot+ [data cs=polarrad, only marks, error bars/.cd,y dir=both,y explicit,x dir=both,x explicit] table [x=x,x error=ex,y=y,y error=ey] {1INertTest.dat};
\end{polaraxis}
\end{tikzpicture}
\end{figure}

\end{document}

错误栏到处都是

x   y   ex  ey
1.63    18.64   0.10    0.2
1.62    16.44   0.10    0.2
1.59    14.15   0.10    0.2
1.56    11.88   0.10    0.2
1.51    9.62    0.10    0.2
1.43    7.39    0.10    0.2
1.28    5.26    0.10    0.2
1.00    3.29    0.10    0.2
0.24    2.11    0.10    0.2
-0.65   2.94    0.10    0.2
-1.01   4.77    0.10    0.2
-1.15   6.92    0.10    0.2
-1.24   9.08    0.10    0.2
-1.30   11.28   0.10    0.2
-1.34   13.51   0.10    0.2
-1.37   15.64   0.10    0.2
-1.40   17.87   0.10    0.2

相关内容