使用 addplot3 gnuplot 时不需要的点

使用 addplot3 gnuplot 时不需要的点

我尝试使用“addplot3 gnuplot”而不是“addplot3”来绘制一些数据,但生成的图表被蓝点网格覆盖。我该如何删除它?

\documentclass{article}
\usepackage{pgfplots}
\pgfplotsset{compat=1.16}

\begin{document}
\begin{tikzpicture}

  \begin{axis}[domain=-1:1,view={0}{90},colorbar horizontal]
    \addplot3 gnuplot[contour filled={number=32}]{ x + y };
  \end{axis}

\end{tikzpicture}

\end{document}

在此处输入图片描述

答案1

只需告诉 pgfplots 您不希望有标记。

\documentclass{article}
\usepackage{pgfplots}
\pgfplotsset{compat=1.16}

\begin{document}
\begin{tikzpicture}

  \begin{axis}[domain=-1:1,view={0}{90},colorbar horizontal]
    \addplot3[no marks] gnuplot[contour filled={number=32}]{ x + y };
  \end{axis}

\end{tikzpicture}

\end{document}

在此处输入图片描述

相关内容