Package topo :: Package command :: Module analysis :: Class Subplotting
[hide private]
[frames] | no frames]

Class Subplotting

source code

                       object --+    
                                |    
param.parameterized.Parameterized --+
                                    |
                                   Subplotting

Convenience functions for handling subplots (such as colorized Activity plots). Only needed for avoiding typing, as plots can be declared with their own specific subplots without using these functions.
Nested Classes [hide private]

Inherited from param.parameterized.Parameterized: __metaclass__

Instance Methods [hide private]

Inherited from param.parameterized.Parameterized: __getstate__, __init__, __repr__, __setstate__, __str__, debug, defaults, force_new_dynamic_value, get_param_values, get_value_generator, inspect_value, message, print_param_values, script_repr, set_dynamic_time_fn, state_pop, state_push, verbose, warning

Inherited from object: __delattr__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __setattr__

Class Methods [hide private]

Inherited from param.parameterized.Parameterized: params, print_param_defaults

Static Methods [hide private]
 
set_subplots(prefix=None, hue='', confidence='', force=True)
staticmethod(function) -> method
source code
Class Variables [hide private]
  plotgroups_to_subplot = param.List(default= ["Activity", "Conn...
List of plotgroups for which to set subplots.
  subplotting_declared = param.Boolean(default= False, doc= "Whe...
Whether set_subplots has previously been called

Inherited from param.parameterized.Parameterized: name, print_level

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

set_subplots(prefix=None, hue='', confidence='', force=True)
Static Method

source code 

staticmethod(function) -> method

Convert a function to be a static method.

A static method does not receive an implicit first argument. To declare a static method, use this idiom:

class C:
def f(arg1, arg2, ...): ... f = staticmethod(f)

It can be called either on the class (e.g. C.f()) or on an instance (e.g. C().f()). The instance is ignored except for its class.

Static methods in Python are similar to those found in Java or C++. For a more advanced concept, see the classmethod builtin.


Class Variable Details [hide private]

plotgroups_to_subplot

List of plotgroups for which to set subplots.
Value:
param.List(default= ["Activity", "Connection Fields", "Projection", "Projection Ac\
tivity"], doc= "List of plotgroups for which to set subplots.")

subplotting_declared

Whether set_subplots has previously been called
Value:
param.Boolean(default= False, doc= "Whether set_subplots has previously been calle\
d")