I have a huge data file and want to visualize the data using histograms. I would like to color a single columns differently than the rest. Here's an example from the documentation (Section 5.11.2 Histograms):
\documentclass{article}
\usepackage{pgfplots}
\pgfplotsset{compat=newest}
\usetikzlibrary{pgfplots.statistics}
\begin{document}
\begin{tikzpicture}
\begin{axis}[
ybar interval,
xticklabel=
\pgfmathprintnumber\tick--\pgfmathprintnumber\nexttick
]
\addplot+[hist={bins=3}]
table[row sep=\\,y index=0] {
data\\
1\\ 2\\ 1\\ 5\\ 4\\ 10\\
7\\ 10\\ 9\\ 8\\ 9\\ 9\\
};
\end{axis}
\end{tikzpicture}
\end{document}
I get:

Now I want manually decide which column to color differently like (done with Paint...):

Has anyone an idea? For normal plots one would just put two plots in one diagram. But here I do not know how to do it.
This is maybe related.

axisenvironments with the same specifications (the graphs are overlapping). But this task looks more complicated. – Malipivo Jun 03 '14 at 06:01