Update: Is there any possibility of drawing two box plots this way using a single datatable as in the updated MWE below?
I'm trying to use pgfplots 1.8's shiny new boxplot feature. As I am also showing the boxplot data in a table, I have the values pre-computed in R and written to an external file. So now I am trying to use the boxplot prepared with a data table rather than hard-coded values, but with very little effect.
My paltry first try at an MWE (taken nearly verbatim from section 5.9.1
Box Plots on p. 373 of the pgfmanual 1.8) is below. In essence, I was hoping to specify the column for the individual boxplot elements similar to the way you specify the x and y column when plotting a table (e.g. \addplot table[x=dof,y=L2] {datafile.dat};). However, I get a
! Package PGF Math Error: Unknown function 'lw' (in 'lw').
\documentclass[crop=false]{standalone}
\usepackage{pgfplotstable}
\pgfplotsset{compat=1.8}
\usepgfplotslibrary{statistics}
\begin{document}
\begin{tikzpicture}
\begin{axis}[boxplot/draw direction=y]
\addplot+[
boxplot prepared={
lower whisker=lw,
lower quartile=lq,
median=med,
upper quartile=uq,
upper whisker=uw,
},
]
table[y index=0] {
lw lq med uq uw
5 7 8.5 9.5 10
4 5 6.5 8.5 9.5
};
\end{axis}
\end{tikzpicture}
\end{document}
The hard-coded equivalent to this would be
\documentclass[crop=false]{standalone}
\usepackage{pgfplotstable}
\pgfplotsset{compat=1.8}
\usepgfplotslibrary{statistics}
\begin{document}
\begin{tikzpicture}
\begin{axis}[boxplot/draw direction=y]
\addplot+[
boxplot prepared={
lower whisker=5,
lower quartile=7,
median=8.5,
upper quartile=9.5,
upper whisker=10,
},
] coordinates{};
\end{axis}
\end{tikzpicture}
\end{document}
The coordinates{} is needed as pgfplots expects a list of outliers after the initial boxplot specification and baulks at an empty table{} statement.

\pgfplotstablegetelem{0}{#1}with\pgfplotstablegetelem{\coordindex}{#1}but that only draws two copies of the same boxplot, presumably because the data table gets copied for each box plot. I've edited to the question accordingly – ThomasH Jun 03 '13 at 21:290) you want to get the data from using the keyrow=<index>. – Jake Jun 03 '13 at 22:00