如何在 pgfplots 生成的图中指定带有标题的节点的位置?

如何在 pgfplots 生成的图中指定带有标题的节点的位置?

我的问题是如何指定图中节点的位置?这是 MWE:

\begin{figure}
\begin{tikzpicture}
    \begin{axis}[
        xlabel=X (\%),
        ylabel=Y (\%),
            legend style={
                draw=none, fill=none, 
                font=\tiny,
                at={(0.5,0.17)},
                anchor=north,
                legend columns=4,
                legend cell align={right},
            },
            xmajorgrids,
        ]
            %CORING (2023)
        \addplot+ [red, mark=square*, nodes near coords,every node near coord/.append style=
                        {xshift=15pt,yshift=8pt,anchor=east,font=\footnotesize}, ultra thick]
                coordinates {
                    (88.25, 93.07)
                    (78.66, 93.83)
                    (66.60, 94.20)
                    (58.19, 94.42)
                    (40.00, 94.67)
                    (19.16, 94.75)
                    (00.00, 93.96)};
            \legend{
                    Method A
                    }
    \end{axis}
\end{tikzpicture}
\caption{My method. %in terms of accuracy versus FLOPs reduction. 
}
\end{figure}

在此处输入图片描述

在此示例中,我的文本与线重叠。所有节点的位置均通过以下方式设置:

{xshift=15pt,yshift=8pt}

但这并不适用于所有节点。所以我想修改每个节点的位置。ChatGPT 建议这样做,但是不起作用:

您可以通过向每个坐标添加“node[pos]”选项来修改每个节点的位置,其中“pos”是介于 0 和 1 之间的值,用于指定节点在连接坐标和其标签的线上的位置。例如,要将第一个坐标的节点向右移动,您可以设置“node[pos=0.5]”而不是“nodes near coords”,并相应地调整“xshift”和“yshift”值。

提前致谢!

答案1

您可以使用该选项coordinate style根据特定条件修改某些标签的样式(当然您也可以使用此机制设置xshiftyshift为特定坐标处的标签):

\documentclass[border=10pt]{standalone}
\usepackage{pgfplots}
\pgfplotsset{compat=newest}

\begin{document}
\begin{tikzpicture}
    \begin{axis}[
        xlabel=X (\%),
        ylabel=Y (\%),
        legend style={
            draw=none, fill=none, 
            font=\tiny,
            at={(0.5,0.17)},
            anchor=north,
            legend columns=4,
            legend cell align={right},
        },
        xmajorgrids,
    ]
        %CORING (2023)
        \addplot+ [
            red, 
            mark=square*, 
            nodes near coords,
            every node near coord/.append style={
                font=\footnotesize
            }, 
            ultra thick, 
            coordinate style/.condition={x < 10 || x > 40}{
                anchor=west,
            },
            coordinate style/.condition={x > 60}{
                anchor=east,
            }
        ]
        coordinates {
            (88.25, 93.07)
            (78.66, 93.83)
            (66.60, 94.20)
            (58.19, 94.42)
            (40.00, 94.67)
            (19.16, 94.75)
            (00.00, 93.96)
        };
        \legend{
            Method A
        }
    \end{axis}
\end{tikzpicture}
\end{document}

在此处输入图片描述

相关内容