Using the groupplots library in pgfplots, how can a title be set for a group of plots? The following code (basically from the manual) is an example layout. I don't want each plot to have a title, but rather a title be placed centered on top of the group.
\documentclass[crop,tikz]{standalone}
\usepackage{pgfplots}
\usepgfplotslibrary{groupplots}
\begin{document}
\begin{tikzpicture}
\begin{groupplot}[
group style={
{group size=2 by 2}},
height=3cm,width=3cm,
title={Title}]
\nextgroupplot
\addplot coordinates {(0,0) (1,1) (2,2)};
\nextgroupplot
\addplot coordinates {(0,2) (1,1) (2,0)};
\nextgroupplot
\addplot coordinates {(0,2) (1,1) (2,1)};
\nextgroupplot
\addplot coordinates {(0,2) (1,1) (1,0)};
\end{groupplot}
\end{tikzpicture}
\end{document}



\node (title) at ($(group c1r1.north)!0.5!(group c2r1.north)$) [above, yshift=\pgfkeysvalueof{/pgfplots/every axis title shift}]to simulate how pgfplots places the title usingaxis description cs. – sappjw Apr 06 '12 at 18:30($(group c1r1.center)!0.5!(group c2r1.center)+(0,2cm)$)Thanks. – codeaviator Dec 11 '16 at 03:25calclibrary syntax. It means find the halfway between center anchors of those given nodes. – percusse Jan 11 '17 at 09:56