scipy-yli/docs/general.rst

27 lines
669 B
ReStructuredText
Raw Normal View History

2022-10-17 21:41:19 +11:00
General specifications
======================
.. _nan-handling:
NaN handling
------------
Most functions take a parameter **nan_policy** to specify how to handle *nan* values in the data. The options are:
* **warn** (default) – Warn on *nan* values
* **raise** – Raise an error on *nan* values
* **omit** – Silently drop rows with *nan* values
In determining whether there is *nan* in the data, only the columns specified in the function (if applicable) are considered.
2022-11-09 17:05:04 +11:00
.. autofunction:: yli.utils.check_nan
2022-10-17 21:41:19 +11:00
General result classes
----------------------
.. autoclass:: yli.utils.ConfidenceInterval
:members:
.. autoclass:: yli.utils.Estimate
:members: