Я создаю матрицу 3x3 графиков в слайде проектора. Позиция (1,1) пустая, остальная часть первой строки содержит заголовки столбцов, а остальная часть первой колонки содержит заголовки строк. Позиции (2,2) по (3,3) содержат фактические графики. Я использую groupplots
( pgfplots
1.12) для создания такой матрицы.
Я получаю следующие два сообщения об ошибках:
Пакет pgfplots Предупреждение: у вас есть ось с пустым диапазоном (в направлении y). Заменяем ее диапазоном по умолчанию и очищаем все графики. на строке ввода 139.
! Ошибка пакета pgfplots: Ошибка: Ширина графика `28.45274pt' слишком мала. Это невозможно реализовать, сохраняя постоянный размер меток. Извините, размеры меток указаны приблизительно. Вам нужно будет настроить ширину..
В случае со второй ошибкой я не знаю, где увеличить ширину. Можете ли вы помочь мне исправить мой код, чтобы я не получал ошибки, упомянутые выше?
Предполагаемый результат — следующее изображение.
Мой код на данный момент выглядит следующим образом:
\documentclass{beamer}
\usepackage{pgfplots}
\usetikzlibrary{pgfplots.groupplots}
\pgfplotsset{compat=1.12}
\pgfmathdeclarefunction{gauss}{2}{%
\pgfmathparse{1/(#2*sqrt(2*pi))*exp(-((x-#1)^2)/(2*#2^2))}%
}
\begin{document}
\begin{frame}{Distribution Matrix}
\begin{tikzpicture}
\begin{groupplot}[
group style={
group name=my plots,
group size=3 by 3,
},
footnotesize,
tickpos=left,
ytick align=outside,
xtick align=outside,
enlarge x limits=false
]
\nextgroupplot[
width=1cm,
height=1cm,
hide axis]
\nextgroupplot[
width=5cm,
height=1cm,
no markers, domain=0:9, samples=100,
axis line style = { draw = none },
xlabel style={at={(axis description cs:0.5,-0.01)},anchor=north},
xlabel={Column 1},
ticks=none,
axis on top]
\nextgroupplot[
width=5cm,
height=1cm,
no markers, domain=0:9, samples=100,
axis line style = { draw = none },
xlabel style={at={(axis description cs:0.5,-0.01)},anchor=north},
xlabel={Column 2},
ticks=none,
axis on top]
\nextgroupplot[
width=1cm,
height=4cm,
no markers, domain=0:9, samples=100,
axis lines=center,
axis line style = { draw = none },
ylabel style={at={(axis description cs:-0.01,0.5)},rotate=90,anchor=south},
ylabel={Row 1},
ticks=none,
axis on top]
\nextgroupplot[
width=5cm,
height=4cm,
no markers, domain=0:9, samples=100,
axis lines=center,
axis line style={->},
xlabel style={at={(axis description cs:0.5,-0.01)},anchor=north},
ylabel style={at={(axis description cs:-0.01,0.5)},rotate=90,anchor=south},
ticks=none,
axis on top]
\addplot [very thick,cyan!50!black] {gauss(4,1)};
\addplot [thick,red, no markers] coordinates {(5.5,0.0) (5.5,0.4)};
\nextgroupplot[
width=5cm,
height=4cm,
no markers, domain=0:9, samples=100,
axis lines=center,
axis line style={->},
xlabel style={at={(axis description cs:0.5,-0.01)},anchor=north},
ylabel style={at={(axis description cs:-0.01,0.5)},rotate=90,anchor=south},
ticks=none,
axis on top]
\addplot [very thick,cyan!50!black] {gauss(4,1)};
\addplot [thick,red, no markers] coordinates {(5.5,0.0) (5.5,0.4)};
\nextgroupplot[
width=1cm,
height=4cm,
no markers, domain=0:9, samples=100,
axis lines=center,
axis line style = { draw = none },
ylabel style={at={(axis description cs:-0.01,0.5)},rotate=90,anchor=south},
ylabel={Row 2},
ticks=none,
axis on top]
\nextgroupplot[
width=5cm,
height=4cm,
no markers, domain=0:9, samples=100,
axis lines=center,
axis line style={->},
xlabel style={at={(axis description cs:0.5,-0.01)},anchor=north},
ylabel style={at={(axis description cs:-0.01,0.5)},rotate=90,anchor=south},
ticks=none,
axis on top]
\addplot [very thick,cyan!50!black] {gauss(4,1)};
\addplot [thick,red, no markers] coordinates {(2.5,0) (2.5,0.4)};
\addplot [thick,red, no markers] coordinates {(5.5,0.0) (5.5,0.4)};
\nextgroupplot[
width=5cm,
height=4cm,
no markers, domain=0:9, samples=100,
axis lines=center,
axis line style={->},
xlabel style={at={(axis description cs:0.5,-0.01)},anchor=north},
ylabel style={at={(axis description cs:-0.01,0.5)},rotate=90,anchor=south},
ticks=none,
axis on top]
\addplot [dashed,very thick,cyan!50!black] {gauss(4,1)};
\addplot [very thick,cyan!50!black] {gauss(5,1)};
\addplot [thick,red, no markers] coordinates {(2.5,0) (2.5,0.4)};
\addplot [thick,red, no markers] coordinates {(5.5,0.0) (5.5,0.4)};
\end{groupplot}
\end{tikzpicture}
\end{frame}
\end{document}
Заранее спасибо!
решение1
Вам не нужно использовать пустой узел \nextgroupplot
для вставки Row 1
и т. д. Но используйте узел типа
\node[rotate=90,above=5mm] at (my plots c1r1.west) {Row 1};
\node[rotate=90,above=5mm] at (my plots c1r2.west) {Row 2};
\node[above=5mm] at (my plots c1r1.north) {Column 1};
\node[above=5mm] at (my plots c2r1.north) {Column 2};
Проблема ширины возникает, когда у вас есть width=1cm
и т. д. в тех пустых \nextgroupplot
s, которые очень малы и pgfplots
на это жалуются.
Вот ваш уточненный код:
\documentclass{beamer}
\usepackage{pgfplots}
\usetikzlibrary{pgfplots.groupplots}
\pgfplotsset{compat=1.12}
\pgfmathdeclarefunction{gauss}{2}{%
\pgfmathparse{1/(#2*sqrt(2*pi))*exp(-((x-#1)^2)/(2*#2^2))}%
}
\begin{document}
\begin{frame}{Distribution Matrix}
%\centering if you want to center this
\begin{tikzpicture}
\begin{groupplot}[
group style={
group name=my plots,
group size=2 by 2,
},
footnotesize,
tickpos=left,
ytick align=outside,
xtick align=outside,
enlarge x limits=false
]
\nextgroupplot[
width=5cm,
height=4cm,
no markers, domain=0:9, samples=100,
axis lines=center,
axis line style={->},
xlabel style={at={(axis description cs:0.5,-0.01)},anchor=north},
ylabel style={at={(axis description cs:-0.01,0.5)},rotate=90,anchor=south},
ticks=none,
axis on top]
\addplot [very thick,cyan!50!black] {gauss(4,1)};
\addplot [thick,red, no markers] coordinates {(5.5,0.0) (5.5,0.4)};
\nextgroupplot[
width=5cm,
height=4cm,
no markers, domain=0:9, samples=100,
axis lines=center,
axis line style={->},
xlabel style={at={(axis description cs:0.5,-0.01)},anchor=north},
ylabel style={at={(axis description cs:-0.01,0.5)},rotate=90,anchor=south},
ticks=none,
axis on top]
\addplot [very thick,cyan!50!black] {gauss(4,1)};
\addplot [thick,red, no markers] coordinates {(5.5,0.0) (5.5,0.4)};
\nextgroupplot[
width=5cm,
height=4cm,
no markers, domain=0:9, samples=100,
axis lines=center,
axis line style={->},
xlabel style={at={(axis description cs:0.5,-0.01)},anchor=north},
ylabel style={at={(axis description cs:-0.01,0.5)},rotate=90,anchor=south},
ticks=none,
axis on top]
\addplot [very thick,cyan!50!black] {gauss(4,1)};
\addplot [thick,red, no markers] coordinates {(2.5,0) (2.5,0.4)};
\addplot [thick,red, no markers] coordinates {(5.5,0.0) (5.5,0.4)};
\nextgroupplot[
width=5cm,
height=4cm,
no markers, domain=0:9, samples=100,
axis lines=center,
axis line style={->},
xlabel style={at={(axis description cs:0.5,-0.01)},anchor=north},
ylabel style={at={(axis description cs:-0.01,0.5)},rotate=90,anchor=south},
ticks=none,
axis on top]
\addplot [dashed,very thick,cyan!50!black] {gauss(4,1)};
\addplot [very thick,cyan!50!black] {gauss(5,1)};
\addplot [thick,red, no markers] coordinates {(2.5,0) (2.5,0.4)};
\addplot [thick,red, no markers] coordinates {(5.5,0.0) (5.5,0.4)};
\end{groupplot}
\node[rotate=90,above=5mm] at (my plots c1r1.west) {Row 1};
\node[rotate=90,above=5mm] at (my plots c1r2.west) {Row 2};
\node[above=5mm] at (my plots c1r1.north) {Column 1};
\node[above=5mm] at (my plots c2r1.north) {Column 2};
\end{tikzpicture}
\end{frame}
\end{document}