
I'm trying to fill the area between the two $z$-scores but I'm not having any luck. Could someone please help me with this?
\begin{tikzpicture}
\begin{axis}[
no markers,
domain=0:6,
samples=100,
ymin=0,
axis lines*=left,
every axis y label/.style={at=(current axis.above origin),anchor=south},
every axis x label/.style={at=(current axis.right of origin),anchor=west},
height=5cm,
width=12cm,
xtick=\empty,
ytick=\empty,
enlargelimits=false,
clip=false,
axis on top,
grid = major,
hide y axis
]
\addplot [very thick,cyan!50!black] {gauss(x, 3, 1)};
\pgfmathsetmacro\valueB{gauss(1,1,7)}
\pgfmathsetmacro\valueA{gauss(1,1,1.7)}
\pgfmathsetmacro\valueC{gauss(1,1,1)}
\draw [very thick, red] (axis cs:1,0) -- (axis cs:1,\valueB);
\draw [very thick, red] (axis cs:2,0) -- (axis cs:2,\valueA);
\draw [very thick, red] (axis cs:3,0) -- (axis cs:3,\valueC);
\node[below] at (axis cs:3, 0) {$\mu$};
\node[below] at (axis cs: 2, 0) {$z=-1.8$};
\node[below] at (axis cs: 1,0) {$z=-2.97$};
\end{axis}
\end{tikzpicture}



\documentclass. While solving problems can be fun, setting them up is not. Then, those trying to help can simply cut and paste your MWE and get started on solving the problem. – Peter Grill Mar 08 '14 at 18:27