我在tikz中用下面的代码制作了一个示意图。
\begin{tikzpicture}
\pgfplotsset{ticks=none}
\begin{axis}[
xlabel=$Treatment$,
ylabel=$Level of donation$]
\addplot[smooth,mark=*,blue] plot coordinates {
(1,1)
(2,1)
(3,1)
};
\addlegendentry{Pure Altruism}
\addplot[smooth,color=red,mark=x]
plot coordinates {
(1,1)
(2,2)
(3,1)
};
\addlegendentry{Warm Glow}
\addplot[smooth,color=green,mark=x]
plot coordinates {
(1,1)
(2,3)
(3,3)
};
\addlegendentry{Mental Accounting}
\end{axis}
\end{tikzpicture}
我的问题是双重的。首先,我希望在情节之外得到传奇。其次,我想将自己的非数字标签添加到x轴。我希望这些标签是治疗名称,而不是数字。如何进行这两项调整?