- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我有以下生成情节的代码
gs = gridspec.GridSpec(20,2)
fig = plt.figure(figsize=(18,15))
fs = 13
min_factor = 1.2
max_factor = 4.0
ax = fig.add_subplot(gs[0:8,0])
title = 'e1 on Object a'
plt.title('Bias vs Separation For ' + title,fontsize=fs)
plt.xlabel('Separation (Arcsec)',fontsize=fs)
plt.ylabel('Residual',fontsize=fs)
plt.ylim([min_factor*mi,max_factor*ma])
means_e1_a.T.plot(ax=ax,style=['k--o','b--o','g--o'],yerr=s_means_e1_a.T)
现在我只希望我的 x Axis 有一个边距,这样我就可以看到最后一点的误差线。现在,如果我做类似的事情:
means_e1_a.T.plot(ax=ax,style=['k--o','b--o','g--o'],yerr=s_means_e1_a.T,
xlim=(0.8,2.2))
返回
我需要做什么才能获得带有正确标签的 0.8 和 2.2。请注意,我应该在以下 x 点上有一个带有误差线的数据点:
[1.2,1.4,1.6,1.8,2.0]
最佳答案
对 plot
的调用正在自动缩放 xlim
:
plt.ylim([min_factor*mi,max_factor*ma])
plt.xlim(0.8, 2.2)
means_e1_a.T.plot(ax=ax, style=['k--o','b--o','g--o'], yerr=s_means_e1_a.T)
print plt.xlim()
> (1.2, 2.0) # not what we told it to do!
调用 plot
后设置 xlim
:
means_e1_a.T.plot(ax=ax, style=['k--o','b--o','g--o'], yerr=s_means_e1_a.T)
plt.ylim([min_factor*mi,max_factor*ma])
plt.xlim(0.8, 2.2)
print plt.xlim()
> (0.8, 2.2) # much better :)
(或者,您也可以使用 ax.autoscale(False)
关闭自动缩放。)
我会对这个答案感到满意,除了如果我尝试上面的第二件事(将 xlim
作为参数传递给 plot
),它适合我(虽然显然不适合你)。所以很遗憾,我无法在第二部分重现您的问题,但如果您可以包含一套完整的代码和示例数据等,我会再次尝试重现。
关于python - 设置 matplotlib xlimits(使用 Pandas DataFrame),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29243328/
我有以下代码(作为示例),我想对其进行调整,以使功能区扩展到整个 xrange,如 geom_hline()做。功能区指示哪些值在可接受的范围内。在我的实际应用程序中,有时没有上限或下限,因此 hli
我想用 ecdf 绘制他的数据 [1] 严重偏斜的图。代码是 df <- data.frame(x=eval(parse(file("http://sprunge.us/XYJK")))) ggplo
我有以下生成情节的代码 gs = gridspec.GridSpec(20,2) fig = plt.figure(figsize=(18,15)) fs = 13 min_factor = 1.2
我是一名优秀的程序员,十分优秀!