I have searched for a long time on the internet (here and other LaTeX resources on the web) but I could not find the answer to my (simple) question: how could I draw a table with Pgfplots, with data input from csv file containing special characters such as "µ" in the column header (to display units of time or distance for intance)?
I found many questions with topics related to this one, but nothing reponsding exactly to my need.
Here is an example of the table within which I would like to have a lovely "µS" instead of "uS"...

As an example, here is how my csv file is populated:
No. ;Peak Name ;Precision RSD Height uS;Precision RSD Area uS*min;Precision RSD Ret.Time min
1 ;Glyoxylate;6.65;3.86;1.51
2 ;Pyruvate;1.32;0.68;1.19
I naively thought I could make pgfplots take all content of column header as string text, but even with the "string type" option, I get errors when compiling...
I will be very grateful to anyone who could help me.
EDIT: I still could not solve my problem; here is an example of my code (for the example, the data is provided as "filecontents" instead of csv).
\begin{filecontents*}{test.csv}
1_1 MTU (µS);2_2 GRA (µmol);3_3 LBU
1;2;3
4;5;6
\end{filecontents*}
\documentclass[10pt,a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage{pgfplots}
\usepackage{pgfplotstable}
\usepackage{colortbl}
\usepackage{booktabs}
\usepackage{filecontents}
\pgfplotsset{trig format plots=rad, compat=1.11}
\begin{document}
\begin{table}[hbgp]
\pgfplotstabletypeset [
col sep=semicolon,
header=has colnames,
column type/.add={|}{},
every head row/.style={
before row={\hline}},
after row=\hline,
display columns/0/.style={string type, column type=|c},
display columns/1/.style={string type, column type=|c},
display columns/2/.style={string type, column type=|c|},
every last row=\hline
]
{test.csv}
\end{table}
\end{document}
siunitxto format the column headers in the document instead of the CSV. See the manual pages 3-4 and similar for examples (withoutsiunitx). – Mike Renfro Dec 08 '14 at 22:57