I would like to center align just the "Mean Difference Price Paid ($)" and "95% C.I." columns. The code I currently have is as follows:
\begin{frame}
\footnotesize
\centering
\frametitle{Bonferroni Simultaneous Confidence Intervals}
\setcounter{table}{3}
\renewcommand{\tablename}{Table 1} % Set the tablename to Panel, instead of Table
\renewcommand{\thetable}{\Alph{table}} % Setting the table number output to letters
\begin{table}
\caption{Bonferroni Simultaneous Confidence Intervals}
\resizebox{\linewidth}{!}{
\begin{tabular}{*{27}{l}}
\hline
Group 1 & Group 2 & {\thead{Mean Difference Price\\ Paid (\$)}} & 95\% C.I.\\
\hline
SEVERE STORMS&WILDFIRES&-70,917&(-160385,18550)\\
TROPICAL STORM LEE&WILDFIRES&-84,761&(-174238, 4717)\\
SEVERE STORMS&FLOODING&-33,371&(-57274, -9467)\\
TROPICAL STORM LEE&FLOODING&-47,214&(-71155, -23272)\\
TROPICAL STORM LEE&HURRICANE SANDY&-38,685&(-86791, 9421)\\
SEVERE STORMS&WINTER STORM&-36,750&(-72506, -994)\\
TROPICAL STORM LEE&WINTER STORM &-50593&(-86375, -14812)\\
SEVERE STORMS&HURRICANE IRENE&-17,456&(-35801, 888)\\
TROPICAL STORM LEE&HURRICANE IRENE&-31,300&(-49694, -12906)\\
\hline
\end{tabular}}
\end{table}
\end{frame}
The packages I am using are (in Overleaf)
\usepackage{graphicx} % Allows including images
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{graphicx}
\usepackage{mathtools}
\usepackage{float}
\usepackage{tabularx}
\usepackage{array}
\usepackage{wrapfig}
\usepackage{multirow}
\usepackage{tabu}
\usepackage{siunitx}
\usepackage{dcolumn,booktabs}
\newcolumntype{d}{D{.}{\cdot}{-1}}
\usepackage{makecell}
\usepackage{tabulary}
\renewcommand\theadfont{\footnotesize}
\renewcommand\theadgape{}
\newcolumntype{P}[1]{>{\centering\arraybackslash}p{#1}}
This code produces the following. I think the numbers look strange left-aligned. Any help would be greatly appreciated.



\resizebox, better is define smaller fonts (in case that table is to wide) or reduce column header width by its rephrasing or breaking in more lines (iv) consider to useScolumns type from thesiunitxpackage for the third column. – Zarko May 07 '19 at 21:48