pyparty icon indicating copy to clipboard operation
pyparty copied to clipboard

Multicanvas ignore works but message says it doesnt

Open hughesadam87 opened this issue 10 years ago • 0 comments

WARNING:pyparty.multi:Ignore set to None but was not found on image.

Try this on nanolabels with ignore = 0.0, or no ignore:

from pyparty import MultiCanvas
from pyparty.data import nanolabels
from pyparty.plots import splot, showim 

NANOLABELS = nanolabels()
NAMES = ('singles', 'dimers', 'trimers', 'clusters')
showim(NANOLABELS, 'spectral', title='Labeled Nanoparticles') 

mc = MultiCanvas.from_labeled(nanolabels(), *NAMES)
mc.set_colors('r', 'g', 'y', 'magenta')
mc.show(names = True, ncols=2, figsize=(7,5))

hughesadam87 avatar Dec 04 '14 22:12 hughesadam87