- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
如何用matplotlib绘制这样的图?
最佳答案
检查 this example来自 this group
例如:
from matplotlib import pyplot as plt
import numpy as np
def line(x, slope=1, zero=0):
return zero + slope * x
x = np.array([-4,10])
y1 = line(x, 2, 2)
y2 = line(x, 1, 3)
fig = plt.figure()
ax = fig.add_subplot(111)
ax.plot(x,y1)
ax.plot(x,y2)
ax.spines['left'].set_position(('data', 0))
ax.spines['right'].set_color('none')
ax.spines['bottom'].set_position(('data',0))
ax.spines['top'].set_color('none')
ax.spines['left'].set_smart_bounds(True)
ax.spines['bottom'].set_smart_bounds(True)
ax.xaxis.set_ticks_position('bottom')
ax.yaxis.set_ticks_position('left')
plt.show()
或者更接近你的图片(这里我去掉了 set_smart_bounds
因为在 win7 中似乎对这个例子没有影响):
ax.spines['left'].set_position(('data', 0))
ax.spines['right'].set_color('none')
ax.spines['bottom'].set_position(('data',0))
ax.spines['top'].set_color('none')
ax.xaxis.set_ticks_position('bottom')
ax.yaxis.set_ticks_position('left')
plt.ylim(ymin=0)
plt.show()
关于python - 图,穿过 y 轴,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8582043/
我在 UITextField 上遇到了这个奇怪的错误,有时有一条线(实际上更多的是透明条)穿过它。有谁知道怎么去掉吗? 这是图片 xib 文件的链接:http://db.tt/7l2Bq42 代码链接
这个问题在这里已经有了答案: ggplot2 and a Stacked Bar Chart with Negative Values (1 个回答) 7年前关闭。 friend 们, 如何在 x 轴
首先我是初学者,我想在向下滚动页面并穿过某个 div 时显示一个菜单栏(当我页面顶部的实际菜单栏不再可见时)这个网站有一个完美的例子来解决我的问题:http://lenssenmannenmode.n
我怎样才能阻止这种情况发生? 这是我联系我们表单的代码。我正在使用 Bootstrap 。当我展开文本区域时,它会穿过分区。我可以通过添加内联 CSS 在文本区域内尝试任何替代方法吗?
如何用matplotlib绘制这样的图? 最佳答案 检查 this example来自 this group 例如: from matplotlib import pyplot as plt impo
所以我一直在研究一款游戏,到目前为止最大的问题是我们无法让玩家与场上的任何物体发生碰撞。相反,他们直接穿过树。谁能告诉我为什么?这是我尝试用于碰撞检测的代码: for tree in treelist
我有这个代码: my link 1 my link 2 my link 3 当我对 应用填充时像这样: ul { list-style: none; margin: 3
我对 pinescript 很新,我被困在这一点上......我只想在 10 EMA 穿过 21 EMA 而 21 高于 50 EMA 和 50 EMA 高于 200 EMA 时绘制交叉。这是指示多头
我是一名优秀的程序员,十分优秀!