How can I use pgfplotstable with multirow to create a table with a column in which every cell spans 3 rows.
\documentclass{article}
\usepackage{pgfplotstable}
\usepackage{multirow}
\begin{filecontents}{table.csv}
A,B,C
1,1,200
,3,300
,5,400
2,1,150
,3,250
,5,350
\end{filecontents}
\pgfplotstableread[col sep=comma]{table.csv}\tabledata
\begin{document}
\begin{table}
\centering
% ???
\end{table}
\end{document}
Should result in a table that looks like:
┌───┬───┬─────┐
│ A │ B │ C │
├───┼───┼─────┤
│ │ 1 │ 200 │
│ 1 │ 3 │ 300 │
│ │ 5 │ 400 │
│ │ 1 │ 150 │
│ 2 │ 3 │ 250 │
│ │ 5 │ 350 │
└───┴───┴─────┘
