如何在x轴(y = 0)tikz latex上绘制xtick

如何在x轴(y = 0)tikz latex上绘制xtick

我有以下图表

\documentclass{article}
\usepackage{pgfplots}

% example data file
\usepackage{filecontents}
\begin{filecontents}{datafile.dat}
thread speedup dev
1 1 0
2 3 1
3 5 0
4 7 1
\end{filecontents}

\begin{document}
\begin{tikzpicture}
\begin{axis}[
    xlabel=threads,
    ylabel=speedup \& deviation,
    xtick={1,...,4}]

\addplot table[x=thread,y=speedup] {datafile.dat};
\addplot table[x=thread,y=dev] {datafile.dat};
\end{axis}
\end{tikzpicture}
\end{document}

如您所见,我希望 x 刻度位于 x 轴(y=0)上,并且我还想删除该框?有什么建议吗?

答案1

如果你增加axis选项:

axis x line = middle,
axis y line = left,
enlarge x limits,
enlarge y limits,

你将获得

结果

我认为这就是您正在寻找的。

相关内容