
    [6g                     >    d dl Z G d dej        j                  ZdS )    Nc                         e Zd Zd fd	Z xZS )CumulativeValidator
cumulative	histogramc           
           t          t          |           j        d|||                    dd          |                    dd          d| d S )Ndata_class_str
Cumulative	data_docsaz  
            currentbin
                Only applies if cumulative is enabled. Sets
                whether the current bin is included, excluded,
                or has half of its value included in the
                current cumulative value. "include" is the
                default for compatibility with various other
                tools, however it introduces a half-bin bias to
                the results. "exclude" makes the opposite half-
                bin bias, and "half" removes it.
            direction
                Only applies if cumulative is enabled. If
                "increasing" (default) we sum all prior bins,
                so the result increases from left to right. If
                "decreasing" we sum later bins so the result
                decreases from left to right.
            enabled
                If true, display the cumulative distribution by
                summing the binned values. Use the `direction`
                and `centralbin` attributes to tune the
                accumulation method. Note: in this mode, the
                "density" `histnorm` settings behave the same
                as their equivalents without "density": "" and
                "density" both rise to the number of data
                points, and "probability" and *probability
                density* both rise to the number of sample
                points.
)plotly_nameparent_namer   r
    )superr   __init__pop)selfr   r   kwargs	__class__s       f/var/www/surfInsights/venv3-11/lib/python3.11/site-packages/plotly/validators/histogram/_cumulative.pyr   zCumulativeValidator.__init__   sv    1!4((1 $	
##!::&6EEjj 	$	
 $	
F G$	
 $	
 $	
 $	
 $	
    )r   r   )__name__
__module____qualname__r   __classcell__)r   s   @r   r   r      s=        %
 %
 %
 %
 %
 %
 %
 %
 %
 %
r   r   )_plotly_utils.basevalidators_plotly_utilsbasevalidatorsCompoundValidatorr   r   r   r   <module>r      sK    # # # #&
 &
 &
 &
 &
-6H &
 &
 &
 &
 &
r   