I plot tabular data wherein none of the y-values of the data go above 1.0. In the resulting plot, however, there are a couple of peaks that go beyond 1.0, giving a false impression about those data points:

This is not visible when I plot with marks, but I need to use "no marks" because it is otherwise far too busy (80 points in a small plot).
How can I prevent this?
Update: Per Jake's request, here's a minimal example that shows the described behaviour:
\documentclass{article}
\usepackage{pgfplots}
\begin{document}
\begin{figure}[ht]
\begin{tikzpicture}
\begin{axis}[no markers, grid=major]
\addplot coordinates{(0, 0.0000000000)
(1, 0.8823529412)
(2, 0.8750000000)
(3, 1.0000000000)
(4, 0.8666666667)
(80, 0.0000000000)}[thick];
\end{axis}
\end{tikzpicture}
\end{figure}
\end{document}
The problem is less pronounced when I don't make my lines thick, but it is still there (and I want thick lines).
