MCPcopy Index your code
hub / github.com/plotly/plotly.py / measure

Method measure

plotly/graph_objs/_waterfall.py:681–696  ·  view source on GitHub ↗

An array containing types of values. By default the values are considered as 'relative'. However; it is possible to use 'total' to compute the sums. Also 'absolute' could be applied to reset the computed total or to declare an initial value where needed.

(self)

Source from the content-addressed store, hash-verified

679
680 @property
681 def measure(self):
682 """
683 An array containing types of values. By default the values are
684 considered as 'relative'. However; it is possible to use
685 'total' to compute the sums. Also 'absolute' could be applied
686 to reset the computed total or to declare an initial value
687 where needed.
688
689 The 'measure' property is an array that may be specified as a tuple,
690 list, numpy array, or pandas Series
691
692 Returns
693 -------
694 numpy.ndarray
695 """
696 return self["measure"]
697
698 @measure.setter
699 def measure(self, val):

Calls

no outgoing calls

Tested by

no test coverage detected