I have two axis environments both containing different plots. I do however want to maintain comparability between both, i.e. I want both plots to consume the same space on the paper for a coordinate step on the y-axis. Setting both plots to the same height doesn't do the trick, as both have different ymax values, thus the ratios of both plots would be different.
In this example
\documentclass[border=3mm]{standalone}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}
\begin{axis}
\addplot coordinates {
(0,0)
(1,1)
};
\end{axis}
\end{tikzpicture}
\begin{tikzpicture}
\begin{axis}
\addplot coordinates {
(0,0)
(1,1)
};
\addplot coordinates {
(0,0)
(1,2)
};
\end{axis}
\end{tikzpicture}
\end{document}
}
... I would want the second axis box to be automatically double as high as the first one, such that the two identical plots also are identically scaled across the two axis environments. The actual outcome does however look like this:



\documentclassso that those trying to help don't have to recreate it. – Peter Grill Oct 09 '11 at 14:24