\documentclass{beamer}

%%%%% title %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\title[]{Bootstrap Methods}
\author[]{Jan Benda}
\institute[]{Neuroethology}
\date[]{WS 17/18}
\titlegraphic{\includegraphics[width=0.3\textwidth]{UT_WBMW_Rot_RGB}}

%%%%% beamer %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\mode<presentation>
{
  \usetheme{Singapore}
  \setbeamercovered{opaque}
  \usecolortheme{tuebingen}
  \setbeamertemplate{navigation symbols}{}
  \usefonttheme{default}
  \useoutertheme{infolines}
  % \useoutertheme{miniframes}
}

%\AtBeginSection[]
%{
%  \begin{frame}<beamer>
%    \begin{center}
%      \Huge \insertsectionhead
%    \end{center}
%  \end{frame}
%}

\setbeamertemplate{blocks}[rounded][shadow=true]
\setcounter{tocdepth}{1}

%%%%% packages %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\usepackage[english]{babel}
\usepackage{amsmath}
\usepackage{bm} 
\usepackage{pslatex}   % nice font for pdf file
%\usepackage{multimedia}

\usepackage{dsfont}
\newcommand{\naZ}{\mathds{N}}
\newcommand{\gaZ}{\mathds{Z}}
\newcommand{\raZ}{\mathds{Q}}
\newcommand{\reZ}{\mathds{R}}
\newcommand{\reZp}{\mathds{R^+}}
\newcommand{\reZpN}{\mathds{R^+_0}}
\newcommand{\koZ}{\mathds{C}}

%%%% graphics %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\usepackage{graphicx}

%%%%% listings %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\usepackage{listings}
\lstset{
 basicstyle=\ttfamily,
 numbers=left,
 showstringspaces=false,
 language=Matlab,
 commentstyle=\itshape\color{darkgray},
 keywordstyle=\color{blue},
 stringstyle=\color{green},
 backgroundcolor=\color{blue!10},
 breaklines=true,
 breakautoindent=true,
 columns=flexible,
 frame=single,
 captionpos=b,
 xleftmargin=1em,
 xrightmargin=1em,
 aboveskip=10pt
 }

\graphicspath{{figures/}}

 
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document} 

\begin{frame}[plain]
  \frametitle{}
  \vspace{-1cm}
  \titlepage % erzeugt Titelseite
\end{frame}


%\subsection{Population}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{frame}
  \frametitle{Statistics: what we want to know}
  \includegraphics[width=1\textwidth]{2012-10-29_16-26-05_771}\\[2ex]
\end{frame}

\begin{frame}
  \frametitle{Let's measure the whole population ...}
  \includegraphics[width=1\textwidth]{2012-10-29_16-41-39_523}\\[2ex]
\end{frame}

\begin{frame}
  \frametitle{We can only measure a sample of the population}
  \includegraphics[width=1\textwidth]{2012-10-29_16-29-35_312}
\end{frame}

%\subsection{Bootstrap distribution}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{frame}
  \frametitle{Sampling distribution}
  \includegraphics[width=1\textwidth]{srs1}
\end{frame}

\begin{frame}
  \frametitle{Theoretical sampling distribution}
  \includegraphics[width=1\textwidth]{srs2}
\end{frame}

\begin{frame}
  \frametitle{Bootstrap distribution}
  \includegraphics[width=1\textwidth]{srs3}\\[1ex]
  \begin{itemize}
  \item Resampling with replacement.
  \item Size of resample equals size of original sample.
  \end{itemize}
\end{frame}

%\subsection{Bootstrap distribution}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{frame}
  \frametitle{Sampling and bootstrap distribution of the mean}
  \includegraphics[width=1\textwidth]{bootstrapsem}
\end{frame}

%\subsection{Permutation test}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{frame}
  \frametitle{Permutation test}
  \includegraphics[width=1\textwidth]{permutecorrelation}
\end{frame}

\end{document}