非常感谢哈里什·库马尔感谢他让我走到今天。他用一个角色就带来了巨大的改变这里:)
我有一个轮廓图,说实话,很难看。它生成的表面不是很平滑。在下面的图片中,它(显然)是右边的那个
我一直在寻找减少标签数量的方法,我发现最接近的方法是这解决方案......但它并没有帮助我实现。
生成图表的代码如下。数据文件可以在 pastebin 上找到。CAG_Contour.dat 是这里并且 PPR_Contour.dat 是这里
\documentclass{article}
\usepackage{pgfplots}
\usepgfplotslibrary{groupplots}
\usetikzlibrary{pgfplots.groupplots}
\pgfplotsset{compat = 1.12}
\begin{document}
\begin{figure}
\centering
\begin{tikzpicture}
\begin{groupplot}[
group style={
group size=2 by 1,
xlabels at=edge bottom,
ylabels at=edge left},
xlabel = {\footnotesize $\alpha_{++}$},
ylabel = {\footnotesize Departure Rate}]
\nextgroupplot[title={\scriptsize Come and Go}]
\addplot[contour/draw color=black,
contour/label distance=125pt,
contour/every contour label/.append style={every node/.style={black!50,fill=white}},
contour prepared,
contour prepared format=matlab]
table {CAG_Contour.dat};
\nextgroupplot[title={\scriptsize ++Resources}]
\addplot[contour/draw color=black,
contour/label distance=400pt,
contour/every contour label/.append style={every node/.style={black!50,fill=white}},
contour prepared, contour prepared format=matlab]
table {PPR_Contour.dat};
\end{groupplot}
\end{tikzpicture}
\end{figure}
\end{document}
如果有人对如何改善右侧轮廓图的外观有任何建议,我将不胜感激。