I am saving tables using write.table in R using the following code:
x <- rnorm(100)
y <- rnorm(100)
z <- rnorm(100)
model <- z ~ x + y
results <- glm(model)
pe <- results$coefficients
vc <- vcov(results)
se <- sqrt(diag(vc))
results.table <- cbind(pe, se)
rownames(results.table) <- c("Intercept", "X-Estimate", "Y-Estimate")
write.table(results.table,file="test.csv",row.names=T,col.names=NA,sep=",")
When I then try to read in the table using pgfplot, there are quotes around all non-numeric values:
% Set up
\documentclass{article}
\usepackage{pgfplotstable,filecontents,booktabs}
\pgfplotstableread[col sep=comma]{test.csv}\tablea
%Start the document
\begin{document}
% Table a
\pgfplotstabletypeset[
string type,
columns/pe/.style={column name=PE, column type = {r}},
columns/se/.style={column name=SE, column type = {r}},
every head row/.style={column type={|l}, before row={\toprule},after row=\midrule},
every last row/.style={after row={\toprule}},
]\tablea
\end{document}
I (obviously) don't want double quotes around all of my string (column and row titles). I also am unable to adjust the styles of the columns using the above code, perhaps because of the absent first column title (which I want to leave blank). Help on either of these issues would be appreciated, this is a full working example. Thanks,

