I have the following table in latex:
\usepackage{booktabs}
\usepackage{amsmath}
%%%
\begin{table}
\begin{tabular}{l@{\hskip 4.8cm} c}
\toprule
\multicolumn{1}{l}{Conversion} & \multicolumn{1}{c}{Formula} \\
\midrule
RR to OR & $\mbox{OR} = \cfrac{1-\mbox{p}_{\mbox{\textit{non-exposed}}}}{1-\mbox{p}_{\mbox{\textit{exposed}}}}$ \\ \addlinespace[0.5cm]
d to OR & $\mbox{OR} = \exp(\mbox{d} \cfrac{\pi}{\sqrt{3}})$ \\ \addlinespace[0.5cm]
r to d & $\mbox{d} = \cfrac{2\mbox{r}}{\sqrt{1-\mbox{r}^2}} $ \\ \addlinespace[0.5cm]
g to d & $\mbox{d} = \cfrac{1}{\mbox{J} \left( \mbox{df} \right)} \times \mbox{g} $ \\
\bottomrule
\end{tabular}
\end{table}
I would like to align the equations in the right column, but for some reason I just cannot figure out how to do it. I have found a few similar questions on stackexchange (e.g., here). Most of the solutions use \begin{aligned} and \end{aligned}. The problem with that is that I do not know where to place the aligned environment since I only need it for the right-hand column.
Thanks a million!


