gpt4 book ai didi

python - 如何使用 matplotlib 在一个图表中绘制多个水平条

转载 作者:太空狗 更新时间:2023-10-30 00:25:20 25 4
gpt4 key购买 nike

你能帮我弄清楚如何用matplotlib画这种图吗?

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

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

我想可视化每个 Graphnm 的大小:水平条形图,其中每一行都有一个y 轴左侧包含 Graph 名称的标签;在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()

最佳答案

听起来您想要的东西与此示例非常相似: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()

enter image description here

关于python - 如何使用 matplotlib 在一个图表中绘制多个水平条,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15201386/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com