matplotlib中的背对背直方图

时间:2009-08-27 11:02:25

标签: python matplotlib histogram

在Matlab中有一个很好的函数可以绘制back to back histograms。我需要在matplotlib中创建一个类似的图形。任何人都可以展示一个有效的代码示例吗?

2 个答案:

答案 0 :(得分:5)

感谢Mark Rushakoff指出的链接,以下是我最终做的事情

import numpy as np
from matplotlib import pylab as pl

dataOne = get_data_one()
dataTwo = get_data_two()

hN = pl.hist(dataTwo, orientation='horizontal', normed=0, rwidth=0.8, label='ONE')
hS = pl.hist(dataOne, bins=hN[1], orientation='horizontal', normed=0, 
    rwidth=0.8, label='TWO')

for p in hS[2]:
    p.set_width( - p.get_width())

xmin = min([ min(w.get_width() for w in hS[2]), 
                min([w.get_width() for w in hN[2]]) ])
xmin = np.floor(xmin)
xmax = max([ max(w.get_width() for w in hS[2]), 
                max([w.get_width() for w in hN[2]]) ])
xmax = np.ceil(xmax)
range = xmax - xmin
delta = 0.0 * range
pl.xlim([xmin - delta, xmax + delta])
xt = pl.xticks()
n = xt[0]
s = ['%.1f'%abs(i) for i in n]
pl.xticks(n, s)
pl.legend(loc='best')
pl.axvline(0.0)
pl.show()

答案 1 :(得分:2)

这个matplotlib users mailing post有一些 bihistogram 的示例代码,它们上下左右而不是左右。他与Here's the example output有联系。

如果上下绝对不适合你,那么只需几分钟即可将y轴上的操作与x轴操作交换。

另外,你的链接不是MATLAB函数,它是一个人在大约40行写的实际脚本。您实际上可以查看脚本源并尝试移植它,因为MATLAB和matplotlib的语法非常接近。