I am trying to draw the following picture, however I am wondering how can I rotate the gaussian function, like in the first plot?

\documentclass[10pt, compress, usetitleprogressbar]{beamer}
%Tikz for drawing
\usepackage{tikz}
\usetikzlibrary{calc,patterns,decorations.pathmorphing,decorations.markings}
\usetikzlibrary{shapes,arrows}
\usetikzlibrary{calc}
\usetikzlibrary{positioning}
\usetikzlibrary{shapes.multipart}
\pgfmathdeclarefunction{gauss}{2}{%
\pgfmathparse{1/(#2*sqrt(2*pi))*exp(-((x-#1)^2)/(2*#2^2))}%
}
\pgfmathdeclarefunction{cline}{2}{%
\pgfmathparse{#1*x+#2}%
}
\begin{tikzpicture}[auto, scale=0.58, every
node/.style={transform shape}]
\begin{axis}[very thick,cyan!30!black,
no markers, domain=0:6, samples=100,
axis lines*=left, xlabel=Measured Value (x), ylabel=Probability Density,
height=5cm, width=7cm,
xtick=\empty, ytick=\empty,
enlargelimits=false, clip=false, axis on top,
grid = major, name=plot1, ymax=1
]
\addplot [very thick,cyan!50!black, fill=cyan!10, rotate
around={-90:(9,9)},] {gauss(3,0.5)};
\end{axis}
\begin{axis}[very thick,cyan!30!black,
no markers, domain=0:6, samples=100,
axis lines*=left, xlabel=Measured Value (x), ylabel=Probability Density,
height=5cm, width=7cm,
xtick=\empty, ytick=\empty,
%xtick={-3, -2, -1, 0, 1, 2, 3}, ytick=empty,
enlargelimits=false, clip=false, axis on top,
grid = major, name=plot2,
at=(plot1.right of south east), anchor=left of south west,
ymax=1
]
\addplot [very thick,cyan!50!black, fill=cyan!10] {cline(1,0.5)};
\end{axis}
\begin{axis}[very thick,cyan!30!black,
no markers, domain=0:6, samples=100,
axis lines*=left, xlabel=Measured Value (x), ylabel=Probability Density,
height=5cm, width=7cm,
xtick=\empty, ytick=\empty,
enlargelimits=false, clip=false, axis on top,
grid = major, name=plot3,
at=(plot2.below south west), anchor=above north west,
ymax=1]
]
\addplot [very thick,cyan!50!black, fill=cyan!10] {gauss(3,0.5)};
\end{axis}
\end{tikzpicture}
\end{document}

