matplotlib / matplotlib/napari-matplotlib

HistogramWidget: 'MultiScaleData' object has no attribute 'ndim'

Open
#251 1 comment 0 reactions 0 assignees View on GitHub

Nobody has claimed this yet.

Bug
Dominant language
Python
Stars
46
Forks
24
PR merge metrics
No merged PRs in 30d

Description

Getting this error trying to use HistogramWidget with some zarr data loaded into napari:

File ~/miniconda3/lib/python3.11/site-packages/napari_matplotlib/histogram.py:72, in HistogramWidget.draw(self=<napari_matplotlib.histogram.HistogramWidget object>)
     67 """
     68 Clear the axes and histogram the currently selected layer/slice.
     69 """
     70 layer = self.layers[0]
---> 72 if layer.data.ndim - layer.rgb == 3:
        layer = <Image layer 'full_rebinned_4' at 0x16d1ad390>
        layer.rgb = False
     73     # 3D data, can be single channel or RGB
     74     data = layer.data[self.current_z]
     75     self.axes.set_title(f"z={self.current_z}")

AttributeError: 'MultiScaleData' object has no attribute 'ndim'

Contributor guide

No contributing guide indexed for this repository

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

Research direction

Start in napari_matplotlib/histogram.py at HistogramWidget.draw, especially line 72 where layer.data.ndim is accessed. Reproduce the error with the reported zarr data loaded into napari and trace how MultiScaleData is provided to the widget. Done means HistogramWidget can handle this data without raising the reported AttributeError.

Written by the indexing model from the issue text.

Assessment

Tech stack
python
Domain
data-visualization
Issue type
Bug
Difficulty
3/5
Estimated time
1-2 days
Activity status
Stale
Clarity
Needs clarification
Newbie friendliness
30/100

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.