使用 PSTricks 绘制箱线图

使用 PSTricks 绘制箱线图

考虑以下:

\documentclass{article}

\usepackage{pst-plot}

\begin{document}

\begin{figure}
\savedata{\data}[172 173 184 160 183 188 176 179 176 180 184 173 182 174 177]
\psset{xunit = 0.26,yunit = 1.3, fillstyle = solid}
  \begin{pspicture}(-1,-0.4)(41.5,2.5)
    \psaxes[Ox = 155, dx = 5, Dx = 5, ticks = x, labels = x]{->}(0,0)(-1,-0.2)(37,2.5)[$h$ (cm),0][,90]
    \rput{270}(0,1){\psBoxplot[yunit = 0.2, fillcolor = blue!30]{\data}}
  \end{pspicture}
\end{figure}

\end{document}

输出

如图所示,箱线图没有显示;我该如何修复这个问题以获得正确的数据箱线图?

这可能是一个小错误,但我无法发现它。

答案1

\rput{270}(-155,1){\psBoxplot[yunit=0.2,fillcolor=blue!30]{\data}}
          ^^^^^^

您还必须转换绘图的 x 坐标:-155 而不是 0

在此处输入图片描述

相关内容