I have this simple graph:
\documentclass[]{article}
\usepackage{tikz}
\usepackage{pgfplots}
\usetikzlibrary{positioning, decorations.pathreplacing, calc, intersections}
\begin{document}
\begin{tikzpicture}
\begin{axis}[
axis lines=middle,
xmin=-0, xmax=1000,
ymin=0, ymax=12,
xtick={25, 125, 250, 500, 800, 1000}, ytick={0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11},
]
\addplot [color=black,only marks, mark=x] coordinates {
(25, 7.5)
(50, 8.3)
(100, 6.1)
(125, 5.2)
(250, 8.1)
(500, 7.7)
(800, 9.1)
(1000, 6.3)
(10000, 5.5)
};
\end{axis}
\end{tikzpicture}
\end{document}
All points are located relatively near on the x-axis apart from the last one. How can I easily add a jump in the x-axis such that I can show the last coordinate (100000, 5.5)?

