I would like to create a bar chart like the following image taken from a paper,

I also saw this question How can I mix an "ybar" and an "ybar stacked" with pgfplots? but it didn't work for me due to my emergency and failing several times to produce a figure with setting like to the above picture.
Thanks in advance for anyone's help and assistance on this essential request.
Also, it is my original codes,
\documentclass{article}
%\usepackage{pgfplots}
\usepackage{pgfplots}
\usepackage{pgfplotstable}
\pgfplotsset{compat=newest}
\usepackage{caption}
\usepackage{polyglossia}
\pagenumbering{gobble}
\makeatletter
\newcommand\resetstackedplots{
\makeatletter
\pgfplots@stacked@isfirstplottrue
\makeatother
\addplot [forget plot,draw=none] coordinates{(-9,0) (-5,0) (-1,0) (3,0) (7,0) (12,0)};
}
\makeatother
\begin{document}
\begin{figure}[h]
\makeatletter
%\pgfplotsset{
% calculate offset/.code={
% \pgfkeys{/pgf/fpu=true,/pgf/fpu/output format=fixed}
% \pgfmathsetmacro\testmacro{(\pgfplotspointmeta *10^\pgfplots@data@scale@trafo@EXPONENT@y)*\pgfplots@y@veclength)}
% \pgfkeys{/pgf/fpu=false}
% },
% every node near coord/.style={
% /pgfplots/calculate offset,
% yshift=-\testmacro
% }
%}
\centering
\begin{tikzpicture}
\begin{axis}[
width = 12cm,
height= 10cm,
ybar stacked,
xtick=data,
bar width=0.15cm,
x = 0.55cm,
ymin=0,
enlarge x limits={true, abs value=0.4},
xticklabels={Football, PolBlogs, PolBooks, Facebook,CalTech,Rice},
% x t style={below=25mm},
xmin = -11,
xmax = 13,
xmajorgrids = true,
ymajorgrids = true,
legend entries={NMI,f1-score},
% legend style={
% at={(-0.05,.65)},
% anchor=south east,
% column sep=1ex
% },
xticklabel style={yshift=-5ex},
% visualization depends on=y \as \rawy,
% symbolic x coords={0,1,2,3}, enlarge x limits=0.15,
% every node near coord/.append style={
% font=\tiny,
% shift={(axis direction cs:0,-\rawy)}
% },
]
\addplot +[bar shift=-0.9 cm,color = blue!100] coordinates {(-9,.62) (-5,.12) (-1,.21) (3,.17) (7,.1) (12,0.01)};
\addplot +[bar shift=-0.9 cm,color = red!100] coordinates {(-9,.76) (-5,.77) (-1,.74) (3,.35) (7,.37) (12, .15)};
%\addplot +[bar shift=-.2cm] coordinates {(1,0.75) (2,.5) (3,.5)};
\resetstackedplots
\addplot +[bar shift=-.6cm,color = blue!100]coordinates {(-9,0.13) (-5,0.01) (-1,0.01) (3,0.04) (7,0.01) (12,.02)};
\addplot +[bar shift=-.6cm,color = red!100] coordinates {(-9,0.4) (-5,.44) (-1,.31) (3,.11) (7,.13) (12,0)};
%\addplot +[bar shift=.2cm] coordinates {(1,0.2) (2,0.1) (3,0.3)};
\resetstackedplots
\addplot +[bar shift=-.3cm,color = blue!100]coordinates {(-9,.01) (-5,0.001) (-1,0.04) (3,.05) (7,.01) (12,.01)};
\addplot +[bar shift=-.3cm,color = red!100] coordinates {(-9,0.2) (-5,0.001) (-1,.55) (3,.14) (7,.13) (12,0)};
%\addplot +[bar shift=-.4cm] coordinates {(1,0.2) (2,0.1) (3,0.3)};
\resetstackedplots
\addplot +[bar shift=0cm,color = blue!100]coordinates {(-9,.45) (-5,.24) (-1,0.43) (3,.11) (7,.21) (12,.14)};
\addplot +[bar shift=0cm,color = red!100] coordinates {(-9,0.84) (-5,.72) (-1,0.69) (3,.24) (7,.52) (12,.36)};
\resetstackedplots
\addplot +[bar shift=.3cm,color = blue!100]coordinates {(-9,.56) (-5,.01) (-1,0.01) (3,.01) (7,.05) (12,.25)};
\addplot +[bar shift=.3cm,color = red!100] coordinates {(-9,0.73) (-5,.3) (-1,0.35) (3,.01) (7,.29) (12,.42)};
\resetstackedplots
\addplot +[bar shift=.6cm,color = blue!100]coordinates {(-9,.21) (-5,.21) (-1,.49) (3,.01) (7,.01) (12,0.01)};
\addplot +[bar shift=.6cm,color = red!100]coordinates {(-9,.76) (-5,.66) (-1,.73) (3,.12) (7,.03) (12,.1)};
\end{axis}
\end{tikzpicture}
\end{figure}
\end{document}
