| |
- Colorgen
- Statistics
- working_dir
class Colorgen |
| |
Methods defined here:
- __call__(self)
- return constant or randomized rgb-color string
- __init__(self, hsv, cycleLength=10.67)
- byteTuple(self)
- return color as a tuple of bytes each in [0,255]
- floatTuple(self)
- return color as a tuple of floats each in [0,1]
- get_value(self, opt, index)
Data and other attributes defined here:
- DISTINCT = [(0.17, 1.0, 0.5), (0.0, 0.9, 1.0), (0.35, 0.67, 0.71), (0.14, 0.9, 1.0), (0.56, 1.0, 0.78), (0.07, 0.8, 0.96), (0.79, 0.83, 0.71), (0.5, 0.71, 0.94), (0.84, 0.79, 0.94), (0.2, 0.76, 0.96), (0.0, 0.24, 0.98), (0.5, 1.0, 0.5), (0.77, 0.25, 1.0), (0.09, 0.76, 0.67), (0.15, 0.22, 1.0), (0.0, 1.0, 0.5), (0.38, 0.33, 1.0), (0.67, 1.0, 0.5)]
|
class Statistics |
| |
Methods defined here:
- __init__(self, label=None, abs=False, histogram=False, printMin=True, scale=1)
- __str__(self)
- add(self, v, label=None)
- average_absolute_deviation_from_mean(self)
- avg(self)
- return the mean value
- avg_abs(self)
- return the mean of absolute values
- clear(self)
- count(self)
- histogram(self)
- mean(self)
- return the median value
- meanAndStdDev(self, limit=None)
- return the mean and the standard deviation optionally limited to the last limit values
- mean_abs(self)
- return the median of absolute values
- median(self)
- median_abs(self)
- quartiles(self)
- rank(self, fraction)
- relStdDev(self, limit=None)
- return the relative standard deviation optionally limited to the last limit values
- update(self, other)
|
|