- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
面向对象的matplotlib的大多数示例都获得带有类似内容的Axis对象
import matplotlib.pyplot as plt
fig1 = plt.figure()
ax1 = fig1.add_subplot(111)
ax1.plot(...... etc.
ax1 = fig1.gca() # "GetCurrentAxis"
最佳答案
plt.gca
获取当前轴,并在需要时创建一个。仅在最简单的1轴情况下等效。
首选的方法是使用 plt.subplots
(并且文档/示例确实有点滞后,如果您想开始贡献,更新文档是一个不错的起点):
fig, ax = plt.subplots(1, 1)
fig, (ax1, ax2) = plt.subplots(2, 1)
关于matplotlib - fig.gca()与fig.add_subplot(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27221009/
我有一个这样的数据框: df = pd.DataFrame({'A': [0.3, 0.2, 0.5, 0.2], 'B': [0.1, 0.0, 0.3, 0.1], 'C': [0.2, 0.5,
面向对象的matplotlib的大多数示例都获得带有类似内容的Axis对象 import matplotlib.pyplot as plt fig1 = plt.figure() ax1 = fig1
关于帖子Embedding small plots inside subplots in matplotlib ,我正在研究这个解决方案,但由于某种原因,转换被忽略了! 我错了吗?或者有错误? imp
我知道 add_subplot() 生成了一个方格图,我正在用 4x4 网格来做,但我还需要一个。我怎样才能做同样的事情但使用奇数个地 block 并使其看起来像这样? 最佳答案 您需要使用 grid
在以前的 answer建议我使用 add_subplot 而不是 add_axes 来正确显示轴,但是搜索文档时我不明白何时以及为什么应该使用这些函数之一. 谁能解释一下区别? 最佳答案 共同点 两者
有时我会遇到这样的代码: import matplotlib.pyplot as plt x = [1, 2, 3, 4, 5] y = [1, 4, 9, 16, 25] fig = plt.fig
我正在构建一个带有嵌入式 Matplotlib (1.4.3) 的 PyQt4 GUI。它允许用户从可用参数列表中选择要绘制的参数,并让他们控制添加/删除、重新缩放子图等以将数据发送到。无论如何,我遇
add_subplot() 和 subplot() 有什么区别?如果一个不存在,他们似乎都添加了一个子图。我查看了文档,但看不出有什么不同。仅仅是为了让以后的代码更加灵活吗? 例如: fig = pl
有很多使用 Fig、ax = plt.subplots() 放大绘图的示例。 但是我有一个代码,我使用Fig=plt.figure(figsize=(8,11)),因此有fig.add_subplot
当我使用 matplotlib 向图形添加新绘图时,我总是使用类似 fig.add_subplot(111) 的东西(如在线示例中所示)。 documentation on add_subplot()
我试图理解为什么下面的图看起来如此不同 plt.subplot(projection='3d') plt.scatter(position1[:,0], position1[:,1], positio
matplotlib.figure.Figure.add_subplots() ( doc ) 应该返回一个轴。 但是,做 import matplotlib.pyplot as plt fig =
我在 Ipython Notebook 中使用 matplotlib 遇到了一个奇怪的问题。这是代码: %matplotlib inline import numpy as np import mat
我是一名优秀的程序员,十分优秀!