当我绘制图表时pgfplots
有时会收到这样的警告信息
NOTE: coordinate (500,0) has been dropped because of the y-coordinate filter.
然而,在某些情况下,这些观点是合法的。我如何才能禁用此类注释消息。
以下是一个代码示例:
\begin{figure}
\begin{tikzpicture}
\begin{axis}[xmode=normal,ymode=log]
\addplot table[x=k,y=Time]{fig_xxx.data};
\end{axis}
\end{tikzpicture}
\end{figure}
谢谢。
答案1
您可以将以下内容添加到您的序言中(或本地环境中axis
):
\pgfplotsset{filter discard warning=false}
这正是您所需要的。但是,它还会删除无界坐标的警告。