I created a 2x2 array where each box contains a subfigure. For three subplots I use \addplot3 from PGFplots with colorbar and in the other, a \addplot. Due to the use of colorbar, the symmetry of the four subfigures is broken. I would like to know if there is a way to rescale the unique plot such that it will align to the other 3 subfigures with colorbar.
Here is an example of my code:
\documentclass[a4paper,12pt]{article}
\usepackage{pgfplots}
\usepgfplotslibrary{patchplots,colormaps}
\usepackage{subfigure}
\usepackage[a4paper]{geometry}
\usepackage{array}
\newcolumntype{C}[1]{>{\centering\arraybackslash}p{#1}}
\begin{document}
\subsection{First subsection}
\begin{figure}[htbp]
\hspace{-0.5cm}
\begin{tabular}{C{.48\textwidth}C{.48\textwidth}}
%%%%%%%%%%%%%%%%%%%%%% 1 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\subfigure [Subfigure 1] {
\resizebox{0.5\textwidth}{!}{%
\begin{tikzpicture} %
\begin{axis}[view={0}{90}, %
xlabel={$p$}, %
ylabel={Mean}, %
title={Mean vs $p$}, %
y filter/.code=\pgfmathparse{\pgfmathresult/400}, %
colormap/autumn, %
colorbar, %
xmin=0, %
xmax=0.1, %
ymin=0, %
ymax=1, %
xticklabel style={/pgf/number format/.cd,fixed,precision=2}, %
] %
\end{axis} %
\end{tikzpicture}
}} &
%%%%%%%%%%%%%%%%%%%%%% 2 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\subfigure [Subfigure 2] {
\resizebox{0.5\textwidth}{!}{%
\begin{tikzpicture} %
\begin{axis}[view={0}{90}, %
xlabel={$p$}, %
ylabel={Mean}, %
title={Mean vs $p$}, %
colormap/cool,
colorbar,
xmin=0,%
xmax=0.1, %
ymin=0, %
ymax=1, %
xticklabel style={/pgf/number format/.cd,fixed,precision=2}, %
] %
\end{axis} %
\end{tikzpicture}
}} \\
%%%%%%%%%%%%%%%%%%%%%% 3 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\subfigure [Subfigure 3] {
\resizebox{0.5\textwidth}{!}{%
\begin{tikzpicture} %
\begin{axis}[tiny,
xlabel={$p$}, %
ylabel={Mean}, %
title={Mean vs $p$}, %
height=5.2cm, width=6cm,% improve scaling manually
xmin=0,%
xmax=0.1, %
ymin=0, %
ymax=1, %
only marks, %
mark size=0.1pt, %
xticklabel style={/pgf/number format/.cd,fixed,precision=2},
]
\end{axis}
\end{tikzpicture}
}} &
%%%%%%%%%%%%%%%%%%%%%% 4 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\subfigure [Subfigure 4] {
\resizebox{0.5\textwidth}{!}{%
\begin{tikzpicture} %
\begin{axis}[view={0}{90}, %
xlabel={$p$}, %
ylabel={Mean}, %
title={Mean vs $p$}, %
colormap/cool, %
colorbar, %
xmin=0, %
xmax=0.1, %
ymin=0, %
] %
\end{axis} %
\end{tikzpicture}
}} \\
\end{tabular}
\caption{Several options}
\end{figure}
\end{document}
Here is the result:

Maybe it would be simpler to place the 3rd pgfplot a bit higher:


