在python中使用figtext

时间:2012-10-28 19:13:12

标签: python matplotlib

如何在Python中使用figtext函数?

我尝试了help(figtext),但返回的说明太模糊了。

我正在尝试将方差和模式添加到数据图表中。

我只是尝试了

figtext(median,mode)

但那不对。

1 个答案:

答案 0 :(得分:3)

根据帮助和documentation

figtext(*args, **kwargs)
    Call signature::

      text(x, y, s, fontdict=None, **kwargs)

    Add text to figure at location *x*, *y* (relative 0-1
    coords). See :func:`~matplotlib.pyplot.text` for the meaning
    of the other arguments.

因此

figtext(.3,.5,str(median))
figtext(.4,.5,str(mean))

将文本添加到图的中间。调整xy值的值,将文本放在所需的位置。您可能还希望使用格式化来获取大量无意义的数字('%.02f'%mean)。