I have the following code that produces the table that is shown. What I am trying to do is to get the fourth and fifth column titles vertically aligned at the top. Is this possible?
\documentclass{article}
\usepackage{multirow}
\usepackage{array}
\newcolumntype{x}[1]{%
>{\raggedright\hspace{0pt}}p{#1}}%
\begin{document}
\centering
\renewcommand{\arraystretch}{1.2}
\begin{tabular}{| m{2cm} | p{2cm} | p{2cm} | p{2cm} | p{2cm} | p{2cm} |} \hline
\multirow{3}{1.7cm}{Data Set} &%
\multicolumn{3}{c |}{Raw Data} &%
Offline Processing Time &
Index Size (KB)\\ \cline{2-4}
%
& %
RDF N3 File SizeKB (sec) &%
Number of Triples &%
Number of Entities\\ \hline
\end{tabular}
\end{document}

