使用 pgfplots 绘制数据时出现奇怪的结果

使用 pgfplots 绘制数据时出现奇怪的结果

我正在尝试绘制这个:

\begin{tikzpicture}
\begin{axis}[
    height=5cm,
    width=\linewidth]
    \addplot[smooth,blue] plot coordinates {
    (27,177)
    (28,223)
    (29,240)
    (30,227)
    (31,201)
    (32,186)
    (33,183)
    (34,187)
    (35,192)
    (36,191)
    (37,188)
    (38,174)
    (39,168)
    (40,169)
    (41,195)
    (42,249)
    (210,413)
    (211,473)
    };
\end{axis}
\end{tikzpicture}

结果如下: 剧情结果(奇怪) >

如您所见,我的数据在 x 轴上包含增加的非重复值。但是,有一条曲线在x=3040x=210到附近弯曲回来220。但是,当我删除最后 2 个数据时,(210,413),(211,473)生成的图看起来很正常:

绘图结果(正常) > 对此有什么想法吗?

答案1

如果没有该smooth选项,它看起来像这样: 在此处输入图片描述

相关内容