I am creating a table using pgfplotstable in LaTeX. But the problem is, I want first column of table blank. But we never leave any values, table should be balanced in pgfplotstable.I define "nan" to keep column blank. But did not work. What I should do?
pgfexample.tex
\documentclass{book}
\usepackage{pgfplotstable,booktabs}
\begin{document}
\begin{table}[h!]
\pgfplotstabletypeset[
col sep = comma,
every head row/.style={before row=\toprule,after row=\midrule},
every last row/.style={after row=\bottomrule},
columns/S/.style={column name={$\leq$}}
columns/A/.style={string type,column name={$\sigma$}},
]
{LSDtable.csv}
\end{table}
\end{document}
LSDtable.csv
#LmitStateDesign table's data
S,A,B,C,D
nan,0.00375,360.53,0.0025,344.45
nan,0.0037,360.01,0.00245,343.42
I want first column of table blank. Suggest me something to solve problem.

create on usekey in the manual. – percusse Jun 26 '16 at 19:17