| Trees | Indices | Help |
|
|---|
|
|
A specification for generating 1D traces of data from recorded timeseries.
A Trace object is a callable object that encapsulates a method for generating a 1-dimensional trace from possibly multidimensional timeseries data, along with a specification for how to plot that data, including Y-axis boundaries and plotting arguments.
Trace is an abstract class. Subclasses implement the __call__ method to define how to extract a 1D trace from a sequence of data.
|
|||
|
Inherited from |
|||
|
|||
|
|||
|
|||
|
Inherited from Inherited from Inherited from |
|||
|
|||
|
Inherited from |
|||
|
|||
__abstract = Truebool(x) -> bool |
|||
data_name = param.String(default= None, doc= Name of the timeseries from which the trace is generated. |
|||
ybounds = param.Parameter(default= (None, None), doc= The (min,max) boundaries for y axis. |
|||
ymargin = param.Number(default= 0.1, doc= The fraction of the difference ymax-ymin to add to the top of the plot as padding. |
|||
plotkw = param.Dict(default= dict(linestyle= 'steps'), doc= Contains the keyword arguments to pass to the plot command when plotting the trace. |
|||
name = <param.parameterized.String object at 0xc0dfdac>String identifier for this object. |
|||
|
Inherited from |
|||
|
|||
|
Inherited from |
|||
|
|||
__abstractbool(x) -> bool Returns True when the argument x is true, False otherwise. The builtins True and False are the only two instances of the class bool. The class bool is a subclass of the class int, and cannot be subclassed.
|
data_nameName of the timeseries from which the trace is generated. E.g. the connection name into a DataRecorder object.
|
yboundsThe (min,max) boundaries for y axis. If either is None, then the bound min or max of the data given, respectively.
|
ymarginThe fraction of the difference ymax-ymin to add to the top of the plot as padding.
|
plotkwContains the keyword arguments to pass to the plot command when plotting the trace.
|
| Trees | Indices | Help |
|
|---|
| Generated by Epydoc 3.0.1 on Thu Aug 5 14:59:39 2010 | http://epydoc.sourceforge.net |