尺寸太大 杆件绘图错误

尺寸太大 杆件绘图错误

这是我的代码。以下代码返回“尺寸太大”错误。此错误有不同的原因,因为我上网后无法修复它。

如果我“改变” x 轴和 y 轴值的转弯,代码就会起作用。

\usepackage{pgfplots}
\pgfplotsset{compat=newest}

\pagestyle{empty}

\begin{document}
\begin{tikzpicture}
\begin{semilogyaxis}[
    y tick label style={
        /pgf/number format/1000 sep=},
    xlabel=Population,
    enlargelimits=0.05,
    legend style={at={(0.5,-0.15)},
        anchor=north,legend columns=1},
    xbar interval=1E-12,
    ymin=-1,
]
\addplot 
    coordinates {(1E-3,1930) (1E-6,1940)
         (1E-9,1950) };
%
%\addplot 
%   coordinates {(1930,38e6) (1940,42e6) 
%       (1950,43e6) (1960,45e6) (1970,65e6)};
%
%\addplot 
%   coordinates {(1930,15e6) (1940,12e6) 
%       (1950,13e6) (1960,25e6) (1970,35e6)};
\legend{Far}
\end{semilogyaxis}
\end{tikzpicture}
\end{document}

相关内容