I'm using fixed axes. pgfplots with gnuplots doesn't draw the line of the graph when I specify these axis dimensions:
\begin{tikzpicture}
\begin{axis}[ height=6cm, width=6cm,
xmin=8, xmax=12,
ymin=800, ymax=1500]
\addplot gnuplot {10517/x};
\end{axis}
\end{tikzpicture}
The output I get is simply the axes with no graphed line. For example, (9,1168.5) is a point on the line, so it should be visible here. Any suggestions? I'm using TeXworks as the editor.
Thank you.

--shell-escapeenabled? (http://tex.stackexchange.com/a/82710/586) Edit: also, the defaultdomainis-5:5I believe, so any points will be outside the axis limits you've set. – Torbjørn T. Jan 09 '17 at 12:57pgfplotsat least, on second thought I'm not entirely sure what happens whengnuplotis used like this. – Torbjørn T. Jan 09 '17 at 13:06