abacusai.item_statistics
========================

.. py:module:: abacusai.item_statistics


Classes
-------

.. autoapisummary::

   abacusai.item_statistics.ItemStatistics


Module Contents
---------------

.. py:class:: ItemStatistics(client, missingPercent=None, count=None, median=None, mean=None, p10=None, p90=None, stddev=None, min=None, max=None, lowerBound=None, upperBound=None)

   Bases: :py:obj:`abacusai.return_class.AbstractApiClass`


   ItemStatistics representation.

   :param client: An authenticated API Client instance
   :type client: ApiClient
   :param missingPercent: percentage of missing values in data
   :type missingPercent: float
   :param count: count of data
   :type count: int
   :param median: median of the data
   :type median: float
   :param mean: mean value of the data
   :type mean: float
   :param p10: 10th percentile of the data
   :type p10: float
   :param p90: 90th_percentile of the data
   :type p90: float
   :param stddev: standard deviation of the data
   :type stddev: float
   :param min: min value in the data
   :type min: int
   :param max: max value in the data
   :type max: int
   :param lowerBound: lower bound threshold of the data
   :type lowerBound: float
   :param upperBound: upper bound threshold of the data
   :type upperBound: float


   .. py:attribute:: missing_percent
      :value: None



   .. py:attribute:: count
      :value: None



   .. py:attribute:: median
      :value: None



   .. py:attribute:: mean
      :value: None



   .. py:attribute:: p10
      :value: None



   .. py:attribute:: p90
      :value: None



   .. py:attribute:: stddev
      :value: None



   .. py:attribute:: min
      :value: None



   .. py:attribute:: max
      :value: None



   .. py:attribute:: lower_bound
      :value: None



   .. py:attribute:: upper_bound
      :value: None



   .. py:attribute:: deprecated_keys


   .. py:method:: __repr__()


   .. py:method:: to_dict()

      Get a dict representation of the parameters in this class

      :returns: The dict value representation of the class parameters
      :rtype: dict



