По какой-то причине две очень простых гистограммы выглядят очень по-разному после компиляции в tex. Точнее, на правом графике расстояние от столбцов до нижней границы квадрата. На левом графике столбцы примыкают к нижней границе квадрата. Я хотел бы изменить левый рисунок, чтобы было расстояние между нижней частью квадрата и синими столбцами на левой диаграмме, как это реализовано справа. Вы знаете, как изменить код левой диаграммы?
Картинка графиков
\begin{figure}[H]
\begin{minipage}[h]{0.49\linewidth}
\begin{tikzpicture}
\begin{axis}[
ybar,
enlargelimits=0.15,
legend style={at={(0.75,-1)},
anchor=north,legend columns=-1},
symbolic x coords={1,2,3,4,5,6},
xtick=data,
nodes near coords,
nodes near coords align={vertical}
]
\addplot coordinates {(1, 179) (2, 122) (3, 79) (4, 59) (5, 49) (6, 205) };
\end{axis}
\end{tikzpicture}
\end{minipage}
\hfill
\begin{minipage}[h]{0.49\linewidth}
\begin{tikzpicture}
\begin{axis}[
ybar,
enlargelimits=0.15,
legend style={at={(0.75,-1)},
anchor=north,legend columns=-1},
symbolic x coords={1,2,3,4,5,6},
xtick=data,
nodes near coords,
nodes near coords align={vertical}
]
\addplot coordinates {(1, 125) (2, 106) (3, 27) (4, 49) (5, 12) (6, 5) };
\end{axis}
\end{tikzpicture}
\end{minipage}
\end{figure}