I would like to have a curly bracket below a few nodes as given in image. I tried to follow this example, but I could not understand it.
Thanks
\documentclass[11pt]{report}
\usepackage{tikz}
\usetikzlibrary{positioning}
\usetikzlibrary{bayesnet}
\begin{document}
\begin{figure}
\centering
\tikz{ %
\node[latent] (phi) {$\phi$};
\node[latent, above = of phi] (y) {$y$};
\node[obs, left = of y] (Obs_y) {$ \tilde {\bf{y}}$};
\node[latent, below = of Obs_y] (sigma) {$\sigma_y$};
\edge {phi} {y};
\edge {y, sigma} {Obs_y};
}
\end{figure}
\end{document}


