matplotlib / matplotlib/pytest-mpl
Colormap not preserved in scatter plot when generating baseline plot.
还没有人认领这个 Issue。
- 主要语言
- Python
- 星标
- 272
- 派生
- 53
- PR 合并指标
- 30 天内没有已合并 PR
描述
Hello, when we are trying to create a baseline for a unit test that uses a scatter plot, we have noticed that pytest-mpl has not been preserving the colormap used in our scatter plot.
For example, the plot we wish to compare against is this:

When we run the unittest through simply doing an import and showing the resulting figure we get the figure above. However, whenever we use pytest to generate the baseline figure, we get the below figure:

Main test:
@pytest.mark.mpl_image_compare(tolerance=30)
def test_time_height_scatter():
sonde_ds = arm.read_netcdf(
sample_files.EXAMPLE_SONDE1)
display = TimeSeriesDisplay({'sgpsondewnpnC1.b1': sonde_ds},
figsize=(7, 3))
display.time_height_scatter('tdry', day_night_background=True)
sonde_ds.close()
return display.fig
time_height_scatter routine:
def time_height_scatter(
self, data_field=None, dsname=None, cmap='rainbow',
alt_label=None, alt_field='alt', cb_label=None, **kwargs):
"""
Create a time series plot of altitued and data varible with
color also indicating value with a color bar. The Color bar is
positioned to serve both as the indicator of the color intensity
and the second y-axis.
Parameters
----------
data_field: str
Name of data field in the object to plot on second y-axis
height_field: str
Name of height field in the object to plot on first y-axis.
dsname: str or None
The name of the datastream to plot
cmap: str
Colorbar corlor map to use.
alt_label: str
Altitued first y-axis label to use. If not set will try to use
long_name and units.
alt_field: str
Label for field in the object to plot on first y-axis.
cb_label: str
Colorbar label to use. If not set will try to use
long_name and units.
**kwargs: keyword arguments
Any other keyword arguments that will be passed
into TimeSeriesDisplay.plot module when the figure
is made.
"""
if dsname is None and len(self._arm.keys()) > 1:
raise ValueError(("You must choose a datastream when there are 2 "
"or more datasets in the TimeSeriesDisplay "
"object."))
elif dsname is None:
dsname = list(self._arm.keys())[0]
# Get data and dimensions
data = self._arm[dsname][data_field]
altitude = self._arm[dsname][alt_field]
dim = list(self._arm[dsname][data_field].dims)
xdata = self._arm[dsname][dim[0]]
if alt_label is None:
try:
alt_label = (altitude.attrs['long_name'] +
''.join([' (', altitude.attrs['units'], ')']))
except KeyError:
alt_label = alt_field
if cb_label is None:
try:
cb_label = (data.attrs['long_name'] +
''.join([' (', data.attrs['units'], ')']))
except KeyError:
cb_label = data_field
colorbar_map = plt.cm.get_cmap(cmap)
self.fig.subplots_adjust(left=0.1, right=0.86,
bottom=0.16, top=0.91)
ax1 = self.plot(alt_field, color='black', **kwargs)
ax1.set_ylabel(alt_label)
ax2 = ax1.twinx()
sc = ax2.scatter(xdata.values, data.values, c=data.values,
marker='.', cmap=colorbar_map)
cbaxes = self.fig.add_axes(
[self.fig.subplotpars.right + 0.02, self.fig.subplotpars.bottom,
0.02, self.fig.subplotpars.top - self.fig.subplotpars.bottom])
cbar = plt.colorbar(sc, cax=cbaxes)
ax2.set_ylim(cbar.get_clim())
cbar.ax.set_ylabel(cb_label)
ax2.set_yticklabels([])
return self.axes[0]
Any help you could provide on this would be appreciated.
贡献指南
这个仓库没有索引到贡献指南
从这里开始
- 先读完整个 Issue,再读项目的贡献指南。
- 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
- Fork 仓库,在一个分支上完成修改。
- 提交 Pull Request,并在描述里引用这个 Issue 编号。
调研方向
从所示的 test_time_height_scatter 示例和 time_height_scatter 例程开始,然后将直接显示的图形与通过 pytest-mpl 生成的基线进行比较。跟踪基线生成期间散点图及其颜色映射的捕获方式;当生成的基线保留直接图形所显示的颜色映射时,即表示完成。
由索引模型根据 Issue 内容生成。
评估
- 技术栈
- matplotlib, python
- 领域
- data-visualization, testing-qa
- Issue 类型
- 缺陷
- 难度
- 4/5
- 预计耗时
- 3-5 天
- 活跃度
- 停滞
- 描述清晰度
- 基本清楚
- 新手友好度
- 42/100