bundles / scipy 1.17.1 / scipy / stats / _distribution_infrastructure / UnivariateDistribution
ABCMeta
scipy.stats._distribution_infrastructure:UnivariateDistribution
Signature
def UnivariateDistribution ( * , tol = <object object at 0x0000> , validation_policy = None , cache_policy = None , ** parameters ) Members
-
__abs__ -
__add__ -
__init__ -
__mul__ -
__neg__ -
__pow__ -
__radd__ -
__repr__ -
__rmul__ -
__rpow__ -
__rsub__ -
__rtruediv__ -
__str__ -
__sub__ -
__truediv__ -
_broadcast -
_ccdf_complement -
_ccdf_complement_safe -
_ccdf_dispatch -
_ccdf_formula -
_ccdf_logexp -
_ccdf_quadrature -
_ccdf1 -
_ccdf2 -
_ccdf2_addition -
_ccdf2_dispatch -
_ccdf2_formula -
_cdf_complement -
_cdf_complement_safe -
_cdf_dispatch -
_cdf_formula -
_cdf_logexp -
_cdf_quadrature -
_cdf1 -
_cdf2 -
_cdf2_dispatch -
_cdf2_formula -
_cdf2_logexp -
_cdf2_quadrature -
_cdf2_subtraction -
_cdf2_subtraction_safe -
_constants -
_copy_parameterization -
_draw -
_entropy_dispatch -
_entropy_formula -
_entropy_logexp -
_entropy_quadrature -
_get_parameter_str -
_iccdf_complement -
_iccdf_complement_safe -
_iccdf_dispatch -
_iccdf_formula -
_iccdf_inversion -
_icdf_complement -
_icdf_complement_safe -
_icdf_dispatch -
_icdf_formula -
_icdf_inversion -
_identify_parameterization -
_ilogccdf_complement -
_ilogccdf_dispatch -
_ilogccdf_formula -
_ilogccdf_inversion -
_ilogcdf_complement -
_ilogcdf_dispatch -
_ilogcdf_formula -
_ilogcdf_inversion -
_logccdf_complement -
_logccdf_dispatch -
_logccdf_formula -
_logccdf_logexp -
_logccdf_logexp_safe -
_logccdf_quadrature -
_logccdf1 -
_logccdf2 -
_logccdf2_addition -
_logccdf2_dispatch -
_logccdf2_formula -
_logcdf_complement -
_logcdf_dispatch -
_logcdf_formula -
_logcdf_logexp -
_logcdf_logexp_safe -
_logcdf_quadrature -
_logcdf1 -
_logcdf2 -
_logcdf2_dispatch -
_logcdf2_formula -
_logcdf2_logexp -
_logcdf2_logexp_safe -
_logcdf2_quadrature -
_logcdf2_subtraction -
_logentropy_dispatch -
_logentropy_formula -
_logentropy_logexp -
_logentropy_logexp_safe -
_logentropy_quadrature -
_logmoment -
_logmoment_quad -
_logpdf_dispatch -
_logpdf_formula -
_logpdf_logexp -
_logpmf_dispatch -
_logpmf_formula -
_logpmf_logexp -
_median_dispatch -
_median_formula -
_median_icdf -
_mode_dispatch -
_mode_formula -
_mode_optimization -
_moment_central -
_moment_central_dispatch -
_moment_central_formula -
_moment_central_general -
_moment_central_normalize -
_moment_central_transform -
_moment_from_pxf -
_moment_integrate_icdf -
_moment_raw -
_moment_raw_dispatch -
_moment_raw_formula -
_moment_raw_general -
_moment_raw_transform -
_moment_standardized -
_moment_standardized_dispatch -
_moment_standardized_formula -
_moment_standardized_general -
_moment_standardized_normalize -
_moment_transform_center -
_num_parameterizations -
_num_parameters -
_overrides -
_pdf_dispatch -
_pdf_formula -
_pdf_logexp -
_pmf_dispatch -
_pmf_formula -
_pmf_logexp -
_preserve_type -
_process_parameters -
_qmc_uniform -
_quadrature -
_sample_dispatch -
_sample_formula -
_sample_inverse_transform -
_solve_bounded -
_support -
_update_parameters -
_validate -
_validate_order_kind -
ccdf -
cdf -
entropy -
iccdf -
icdf -
ilogccdf -
ilogcdf -
kurtosis -
logccdf -
logcdf -
logentropy -
logpdf -
logpmf -
mean -
median -
mode -
moment -
pdf -
plot -
pmf -
reset_cache -
sample -
skewness -
standard_deviation -
support -
variance
Summary
Class that represents a continuous statistical distribution.
Parameters
tol: positive float, optionalThe desired relative tolerance of calculations. Left unspecified, calculations may be faster; when provided, calculations may be more likely to meet the desired accuracy.
validation_policy: {None, "skip_all"}Specifies the level of input validation to perform. Left unspecified, input validation is performed to ensure appropriate behavior in edge case (e.g. parameters out of domain, argument outside of distribution support, etc.) and improve consistency of output dtype, shape, etc. Pass
'skip_all'to avoid the computational overhead of these checks when rough edges are acceptable.cache_policy: {None, "no_cache"}Specifies the extent to which intermediate results are cached. Left unspecified, intermediate results of some calculations (e.g. distribution support, moments, etc.) are cached to improve performance of future calculations. Pass
'no_cache'to reduce memory reserved by the class instance.
Attributes
All parameters are available as attributes.
Methods
supportplotsamplemomentmeanmedianmodevariancestandard_deviationskewnesskurtosispdflogpdfcdficdfccdficcdflogcdfilogcdflogccdfilogccdfentropylogentropy
Notes
The following abbreviations are used throughout the documentation.
PDF: probability density function
CDF: cumulative distribution function
CCDF: complementary CDF
entropy: differential entropy
log-F: logarithm of F (e.g. log-CDF)
inverse F: inverse function of F (e.g. inverse CDF)
The API documentation is written to describe the API, not to serve as a statistical reference. Effort is made to be correct at the level required to use the functionality, not to be mathematically rigorous. For example, continuity and differentiability may be implicitly assumed. For precise mathematical definitions, consult your preferred mathematical text.
See also
- rv_infrastructure
Tutorial
Aliases
-
scipy.stats._distribution_infrastructure.UnivariateDistribution