有人知道模块 fillplots (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
])
没有任何反应。我怎么能看到这张照片?包的文档很差,我不知道还应该做些什么。有没有其他方法来绘制区域,这是一个给定的不等式系统的解决方案?
答案 0 :(得分:2)
如果您事先导入pyplot
import matplotlib.pyplot as plt
然后在你打电话给绘图仪之后你可以做
plt.show()
,情节将显示。