como plotar xtick no eixo x (y = 0) tikz latex

como plotar xtick no eixo x (y = 0) tikz latex

Eu tenho o seguinte gráfico

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

Como você pode ver, eu gostaria que os x ticks estivessem localizados no eixo x (y = 0) e também gostaria de remover a caixa? Alguma sugestão?

Responder1

Se você adicionar às suas axisopções:

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

você obterá

resultado

que é o que acho que você está procurando.

informação relacionada