cytoflow.utility.log_scale

A scale that transforms data using a base-10 log.

LogScale – implements IScale, the cytoflow interface for the scale.

class cytoflow.utility.log_scale.LogScale(**kwargs)[source]

Bases: cytoflow.utility.scale.ScaleMixin

name = 'log'
get_mpl_params(ax)[source]

Returns a dict with the traits needed to initialize an instance of matplotlib.scale.ScaleBase

inverse(data)[source]

Transforms ‘data’ using the inverse of this scale.

clip(data)[source]

Clips data to the range of the scale function

norm(vmin=None, vmax=None)[source]

A factory function that returns matplotlib.colors.Normalize instance, which normalizes values for a matplotlib color palette.