Мой вопрос: как указать положение узла на графике? Вот 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
для изменения стиля определенных меток в зависимости от конкретного условия (конечно, вы также можете установить xshift
или yshift
для меток в определенных координатах, используя этот механизм):
\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}