有人知道模块填充图(http://fillplots.readthedocs.org)吗?我已经成功安装了它,但是当我从http://fillplots.readthedocs.org/en/latest/examples.html运行一些简单的代码时

from fillplots import plot_regions
plotter = plot_regions([
    [(lambda x: x ** 2,),  # x ^ 2 > 0 and
     (lambda x: x + 5,)],  # x + 5 > 0
])


没发生什么事。我怎么看那张照片?该软件包的文档很差,我不知道该怎么办。是否有其他方法可以绘制区域,该区域是给定不平等系统的解决方案?

最佳答案

如果您事先导入pyplot

import matplotlib.pyplot as plt


然后,在给绘图仪打电话后,您可以

plt.show()


然后该图将显示。

关于python - Python中的fillplots模块,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/25607504/

10-12 23:54