I have tried different approaches however nothing works.
Any suggestions for creating a table with this layout? If I create 2 multirows (each with 2 rows-X and Y), I am not sure how to merge them for column c2 and c3. Thanks!
This is one example (spacing is all weird).
\usepackage{makecell}
\begin{table}[h]
\caption{Design of Experiment1} % title name of the table
\centering % centering table
\begin{tabular}{c c c c} % creating 4 columns
\hline\hline % inserting double-line
\\ [0.5ex]
Group &Training &Reversal &Notation
\\ [0.1ex]
\hline % inserts single-line
\\ [0.5ex]
% 1st row
& & & WT L1(+||-) \\[1ex]
% 2nd row row
\raisebox{1.5ex}{WT} & & & WT L2(-||+) \\[1ex]
% 3rd row
& & & HET L1(+||-) \\[1ex]
% 4th row
\raisebox{1.5ex}{HET} & \raisebox{2ex} {\makecell{L1 reinforced (L+) \\ L2
non-reinforced (L-)}} & \raisebox{2ex}{\makecell{L1 non-reinforced (L-) \\
L2 reinforced (L+)}} & WT L2(-||+)\\[1ex]
\hline % inserts single-line
\end{tabular}
\label{tab:PPer}
\end{table}

