This seems a very simple question, but I cannot find an answer.
I have a very simple CSV file and I want to make a LaTeX table from it.
tiny.csv
-1, 1, -1, 1
2, 4, 6, 8
3, 9, 27, 81
LaTeX file
\documentclass{standalone}
\usepackage{pgfplotstable}
\begin{document}
\pgfplotstabletypeset[col sep=comma]{tiny.csv}
\end{document}
Then I have a table as follows:
0 1 2 3 <- head row
−1 1 −1 1
2 4 6 8
3 9 27 81
I wish the numbers in the head row to begin with 0, not 1. And I don't want to change the file tiny.csv as it will be used by other scripts for experiment. How can I change the head row to '1 2 3 4' from '0 1 2 3'?


@cell contentmore practical withevery head row? – percusse Mar 19 '13 at 11:56