8

你能帮我弄清楚如何用 matplotlib 绘制这种情节吗?

我有一个代表表格的熊猫数据框对象:

Graph       n           m
<string>    <int>      <int>

我想可视化每个的大小nm一个Graph水平条形图,其中每一行都有一个标签,其中包含Graphy 轴左侧的名称;在 y 轴的右侧,有两条细横条,它们正下方,它们的长度分别代表nm。应该清楚地看到两个细条都属于标有图形名称的行。

这是我到目前为止写的代码:

fig = plt.figure()
ax = gca()
ax.set_xscale("log")
labels = graphInfo["Graph"]
nData = graphInfo["n"]
mData = graphInfo["m"]

xlocations = range(len(mData))
barh(xlocations, mData)
barh(xlocations, nData)

title("Graphs")
gca().get_xaxis().tick_bottom()
gca().get_yaxis().tick_left()

plt.show()
4

2 回答 2

25

听起来您想要与此示例非常相似的东西:http: //matplotlib.org/examples/api/barchart_demo.html

作为开始:

import pandas
import matplotlib.pyplot as plt
import numpy as np

df = pandas.DataFrame(dict(graph=['Item one', 'Item two', 'Item three'],
                           n=[3, 5, 2], m=[6, 1, 3])) 

ind = np.arange(len(df))
width = 0.4

fig, ax = plt.subplots()
ax.barh(ind, df.n, width, color='red', label='N')
ax.barh(ind + width, df.m, width, color='green', label='M')

ax.set(yticks=ind + width, yticklabels=df.graph, ylim=[2*width - 1, len(df)])
ax.legend()

plt.show()

在此处输入图像描述

于 2013-03-05T02:02:29.473 回答
15

问题和答案现在有点老了。根据文档,这现在要简单得多。

>>> speed = [0.1, 17.5, 40, 48, 52, 69, 88]
>>> lifespan = [2, 8, 70, 1.5, 25, 12, 28]
>>> index = ['snail', 'pig', 'elephant',
...          'rabbit', 'giraffe', 'coyote', 'horse']
>>> df = pd.DataFrame({'speed': speed,
...                    'lifespan': lifespan}, index=index)
>>> ax = df.plot.barh()

在此处输入图像描述

于 2019-05-16T23:12:56.037 回答