arrow_backRetour aux issues
sktime/skpro
#1120
Débutant
Ouvrirarrow_forward
Débutant
Ouvrirarrow_forward
Débutant
Ouvrirarrow_forward
[DOC] add explicit formulae to docstrings of distributions
ecoDébutant
good first issue
module:distributions&simulation
documentation
descriptionDescription
We should add, where known, explicit formulae to the docstrings of distribution methods.
This is done by populating the `_formula_docs` attribute of the given distribution, see the extension template in `extension_templates.distributions` for a detail explanation, and `Normal` for an example of a populated distribution.
Contributors can help by:
* adding formulae to a distribution which does not have them yet
* adding formulae for more methods in a distribution which already has them
Please post here before starting, to avoid duplication: which distribution and method(s) you are working on.
If opening a PR, please provide a reference for the formula - either a literature reference, or your own compitation. No AI generated formulae please, since these tend to be hallucinated.
Recipe for finding distributions that have not yet been dealt with:
```python
from skpro.registry import all_objects
all_dists = all_objects("distribution", return_names=False)
dists_without_formula = [d for d in all_dists if not hasattr(d, "_formula_docs") or len(d._formula_docs) <6]
```
Issues similaires
calkit/calkit
star53
Poids du dépôt moyen
VS Code extension should be robust to YAML parser errors
Seeing this error: ``` Failed to read calkit.yaml: YAMLParseError: A block sequence may not be used as an implicit map…
Python
bug
good first issue
fu351/Doberman-Core
star211
Poids du dépôt léger
dash: a manual Refresh control
The dashboard polls: `refreshStats()` (`src/doberman/dash/app.py:408`) every 5 s and `refreshPending()` (`:546`) every …
Python
enhancement
good first issue
fu351/Doberman-Core
star211
Poids du dépôt léger
dash: "Copy details" button on each pending-approval card
Each pending-approval card in the dashboard (`renderPending`, `src/doberman/dash/app.py:448-544`) shows the risk badge,…
Python
enhancement
good first issue