LSSTApplications  17.0+11,17.0+34,17.0+56,17.0+57,17.0+59,17.0+7,17.0-1-g377950a+33,17.0.1-1-g114240f+2,17.0.1-1-g4d4fbc4+28,17.0.1-1-g55520dc+49,17.0.1-1-g5f4ed7e+52,17.0.1-1-g6dd7d69+17,17.0.1-1-g8de6c91+11,17.0.1-1-gb9095d2+7,17.0.1-1-ge9fec5e+5,17.0.1-1-gf4e0155+55,17.0.1-1-gfc65f5f+50,17.0.1-1-gfc6fb1f+20,17.0.1-10-g87f9f3f+1,17.0.1-11-ge9de802+16,17.0.1-16-ga14f7d5c+4,17.0.1-17-gc79d625+1,17.0.1-17-gdae4c4a+8,17.0.1-2-g26618f5+29,17.0.1-2-g54f2ebc+9,17.0.1-2-gf403422+1,17.0.1-20-g2ca2f74+6,17.0.1-23-gf3eadeb7+1,17.0.1-3-g7e86b59+39,17.0.1-3-gb5ca14a,17.0.1-3-gd08d533+40,17.0.1-30-g596af8797,17.0.1-4-g59d126d+4,17.0.1-4-gc69c472+5,17.0.1-6-g5afd9b9+4,17.0.1-7-g35889ee+1,17.0.1-7-gc7c8782+18,17.0.1-9-gc4bbfb2+3,w.2019.22
LSSTDataManagementBasePackage
Classes | Public Member Functions | Public Attributes | Properties | List of all members
lsst.meas.modelfit.display.densityPlot.DensityPlot Class Reference

Classes

class  LayerDict
 

Public Member Functions

def __init__ (self, figure, kwds)
 
def replot (self)
 
def draw (self)
 

Public Attributes

 figure
 
 data
 
 layers
 

Properties

 active = property(_get_active, _set_active, doc="sequence of active dimensions to plot (sequence of str)")
 

Detailed Description

An object that manages a matrix of matplotlib.axes.Axes objects that represent a set of 1-d and 2-d
slices through an N-d density.

Definition at line 268 of file densityPlot.py.

Constructor & Destructor Documentation

◆ __init__()

def lsst.meas.modelfit.display.densityPlot.DensityPlot.__init__ (   self,
  figure,
  kwds 
)

Definition at line 308 of file densityPlot.py.

308  def __init__(self, figure, **kwds):
309  self.figure = figure
310  self.data = dict(kwds)
311  active = []
312  self._lower = dict()
313  self._upper = dict()
314  # We merge the dimension name lists manually rather than using sets to preserve the order.
315  # Most of the time we expect all data objects to have the same dimensions anyway.
316  for v in self.data.values():
317  for dim in v.dimensions:
318  if dim not in active:
319  active.append(dim)
320  self._lower[dim] = v.lower[dim]
321  self._upper[dim] = v.upper[dim]
322  else:
323  self._lower[dim] = min(v.lower[dim], self._lower[dim])
324  self._upper[dim] = max(v.upper[dim], self._upper[dim])
325  self._active = tuple(active)
326  self._all_dims = frozenset(self._active)
327  self.figure.subplots_adjust(left=0.05, right=0.95, bottom=0.05, top=0.95, hspace=0.01, wspace=0.01)
328  self._build_axes()
329  self.layers = self.LayerDict(self)
330 
int min
int max
def __init__(self, minimum, dataRange, Q)

Member Function Documentation

◆ draw()

def lsst.meas.modelfit.display.densityPlot.DensityPlot.draw (   self)

Definition at line 434 of file densityPlot.py.

434  def draw(self):
435  self.figure.canvas.draw()
436 
437 

◆ replot()

def lsst.meas.modelfit.display.densityPlot.DensityPlot.replot (   self)

Definition at line 380 of file densityPlot.py.

380  def replot(self):
381  self._lower = {dim: min(self.data[k].lower[dim] for k in self.data) for dim in self._active}
382  self._upper = {dim: max(self.data[k].upper[dim] for k in self.data) for dim in self._active}
383  self._build_axes()
384  for name, layer in self.layers.items():
385  self._plotLayer(name, layer)
386 
int min
int max
std::vector< SchemaItem< Flag > > * items

Member Data Documentation

◆ data

lsst.meas.modelfit.display.densityPlot.DensityPlot.data

Definition at line 310 of file densityPlot.py.

◆ figure

lsst.meas.modelfit.display.densityPlot.DensityPlot.figure

Definition at line 309 of file densityPlot.py.

◆ layers

lsst.meas.modelfit.display.densityPlot.DensityPlot.layers

Definition at line 329 of file densityPlot.py.

Property Documentation

◆ active

lsst.meas.modelfit.display.densityPlot.DensityPlot.active = property(_get_active, _set_active, doc="sequence of active dimensions to plot (sequence of str)")
static

Definition at line 378 of file densityPlot.py.


The documentation for this class was generated from the following file: