I am trying to produce a slide in beamer as:
% !TeX TS-program = xelatex
\documentclass{beamer}
\usecolortheme[rgb={0.7,0.2,0.2}]{structure}
\beamertemplateshadingbackground{red!70}{yellow!85}
\mode<article>{
\usepackage{fullpage}
\usepackage[bookmarks=false]{hyperref}
}
\mode<presentation>{
%\setbeamertemplate{background canvas}[vertical shading][bottom=red!10,top=blue!10]
\usetheme{Darmstadt}
}
\newtheorem*{remark6}{\footnotesize Prediction, The Main Purpose of Spatial Analysis}
\title[\textcolor{yellow}{Analysis of Non-Gaussian Spatial Models with Covariates Measurement Error}]
{\Large Analysis of Non-Gaussian Spatial Models with Covariates Measurement Error}
\date[{Ph.D. Thesis in Statistics} \hspace{5.3cm}December 4, 2018]{}%\\% \tiny November 2011
\begin{document}
\begin{frame}
\frametitle{\initfamily Prediction}
\begin{remark6}
\begin{columns}
\begin{column}{0.39\textwidth}
\vspace{-0.2cm}
\begin{alertblock}{}
\begin{figure}
\center\vspace{-0.1cm}
\includegraphics<1>[width=\textwidth, height=0.75\textwidth]{F13.png}
\includegraphics<2>[width=\textwidth, height=0.75\textwidth]{F14copy.png}
\includegraphics<3>[width=\textwidth, height=0.75\textwidth]{F13.png}
\includegraphics<4>[width=\textwidth, height=0.75\textwidth]{F14copy.png}
\end{figure}
\end{alertblock}
\end{column}
\begin{column}{0.49\textwidth}
\pause
\begin{block}{\center\scriptsize Bayesian Inference}
\center\scriptsize
Data Agumentation Method
\end{block}
\pause
\begin{exampleblock}{\center\scriptsize Gibbs Sampling}
\center\scriptsize Metropolis - Hatings Algorithm
\end{exampleblock}
\pause
\begin{alertblock}{\center\scriptsize Bayesian Predictive Distribution}
\center\scriptsize Bayesian Spatial Prediction
\end{alertblock}
\end{column}
\end{columns}
\end{remark6}
\end{frame}
\end{document}
But the figure boxes are in different sizes as:
and
How can I fix it?


