Code: Select all
\begin{tikzpicture}[remember picture,overlay,scale=0.5]
\node[xshift=6cm,yshift=3cm] at (current page.center) {%
\begin{tikzpicture}
{
\node [block] (graphical) {Graphical Summary Measure};
\node [cloud, below of=graphical] (stem) {stem and leaf display};
\node [cloud, below of=stem] (boxplots) {boxplots};
\node [cloud, below of=boxplots] (schematics) {schematics plots};
\node [cloud, below of=schematics] (histogram) {Histograme};
\node [cloud, below of=histogram] (kernel) {Kernal Density Smoothing};
\node [cloud, below of=kernel] (Cumulative) {Cumulative Frequency Distrbution};
% Draw arrows
\draw [->] (graphical) to (stem);
\draw [->] (stem) to (boxplots);
\draw [->] (boxplots) to (schematics);
\draw [->] (schematics) to (histogram) ;
\draw [->] (histogram) to (kernel) ;
\draw [->] (kernel) to (Cumulative);
}
\end{tikzpicture}
};
\end{tikzpicture}