x軸(y=0)にxtickをプロットする方法tikzlatex

x軸(y=0)にxtickをプロットする方法tikzlatex

次のグラフがあります

\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,

あなたは得るでしょう

結果

それがあなたが探しているものだと思います。

関連情報