gpt4 book ai didi

python - 在绘图上显示数据框

转载 作者:行者123 更新时间:2023-11-28 18:24:57 24 4
gpt4 key购买 nike

假设我想在绘图上显示一个小的单行数据框,这可能吗?

示例:

    buy_hold    coin    lose.max    no_trades   strat_prof  win.max
0 7.406522 DASH -2.115741 89.0 270.080641 123.46243

我希望生成的图看起来像这样: plot

最佳答案

编辑:我首先建议使用 Pandas 绘制表格,但也可以直接使用 Matplotlib 完成。

Matplotlib 有一种在绘图中显示表格的方法,可以通过多种方式对其进行自定义,请参阅文档 here .

这是一个看起来与您想要的非常相似的 plotly :

enter image description here

剧情代码:

import numpy as np
import matplotlib.pyplot as plt

plot([1, 3], [40, 60])
plot([2, 4], [40, 60])
ylim(37, 60)

columns = ["buy_hold", "coin", "lose.max", "no_trades", "strat_prof", "win.max"]
cell_text = [["7.406522", "DASH", "-2.115741", "89.0", "270.080641", "123.46243"]]

# Add a table at the bottom of the axes
the_table = plt.table(cellText=cell_text,
colLabels=columns,
colWidths=[.15]*len(columns),
loc='lower right')

# Adjust layout to make room for the table:
#plt.subplots_adjust(bottom=0.3)

plt.show()

关于python - 在绘图上显示数据框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41997456/

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