gpt4 book ai didi

python - 使用 Pandas 绘图时的 Matplotlib 边距

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

我正在尝试设置边距,以便在使用 matplotlib 绘图时我的所有点都可见,但它似乎没有正确添加它们。下面是我的代码和输出。

我正在使用 IPython 和 %matplotlib 魔术命令。

我做错了什么吗?

import matplotlib.pyplot as plt
import pandas as pd


d = pd.DataFrame(pd.Series(range(10))*2)
a = d.plot(style = "o-")
a.set_axis_bgcolor('g')
a.margins(.05)

Matplotlib Output

最佳答案

请参阅以下有关 set_ylim 和 set_xlim 的文档 http://matplotlib.org/api/axes_api.html?highlight=set_xlim

d = pd.DataFrame(pd.Series(range(10))*2)
a = d.plot(style = "o-")
a.set_axis_bgcolor('g')
a.set_ylim([-1,19])
a.set_xlim([-1,11])
a.margins(.05)

enter image description here

关于python - 使用 Pandas 绘图时的 Matplotlib 边距,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30743287/

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