Try as I might, I can't seem to replace the numbering on the x-axis with (arbitrary) labels.
Here is a half-and-half, where the plot has been done in PGPPlots and I've added two of the x-ticks showing how I'd like it to look: I've seen a few examples in relation to barplots, but I can't seem to transfer it to this example. As always, thanks for the consideration.
Update: Got it working with a combination of scale and width. Thanks all.
MWE:
\documentclass{article}
\usepackage{tikz}
\usepackage{rotating}
\usepackage{verbatim}
\usepackage{pgfplots}
\begin{document}
\begin{sidewaysfigure}
\begin{tikzpicture}[scale=1.1],
\centering
\begin{axis}[
height=8cm,
width=15cm,
ymax=5,
ymin=-3,
xmin=0.5,
xmax=10.5,
axis y line*=left,
axis x line*=bottom]
\addplot+[only marks][error bars/.cd,y dir=both, y explicit]
coordinates {
(10,0.23333) +- (0.58257,-0.1159)
(9,1.4) +- (2.04003,0.75997)
(8,1.1) +- (1.82293,0.37707)
(7,1.3667) +- (2.0352,0.6981)
(6,0.26667) +- (0.94558,-0.41225)
(5,0) +- (0.59648,-0.59648)
(4,0.9) +- (1.67431,0.12569)
(3,-0.66667) +- (0.09502,-1.42835)
(2,0.56667) +- (1.30495,-0.17162)
(1,0.4) +- (1.06941,-0.26941)
};
\addplot[dashed] coordinates {(-1,0) (42,0)};
\end{axis}
\end{tikzpicture}%
}
\end{sidewaysfigure}
\end{document}


xtick labelslist. – Alan Munn Jun 03 '11 at 14:24xtick={1,...,10},(orxtick={1,...,42},in you real application) to the axis options, you can get rid of the two initial commas. If you don't specify the ticks explicitly, PGFplots will map the tick labels to ticks that aren't necessarily shown in the plot. – Jake Jun 03 '11 at 22:04xin+- (x,y)gives the horizontal error bar size, which is ignored as horizontal error bars are not enabled. See my answer. – dremodaris May 03 '15 at 15:02