scipy: DOC: rvalue description is missing in stats.probplot
The description of rvalue
in stats.probplot()
is missing.
def probplot(x, sparams=(), dist='norm', fit=True, plot=None, rvalue=False):
...
Parameters
----------
x : array_like
Sample/response data from which `probplot` creates the plot.
sparams : tuple, optional
Distribution-specific shape parameters (shape parameters plus location
and scale).
dist : str or stats.distributions instance, optional
Distribution or distribution function name. The default is 'norm' for a
normal probability plot. Objects that look enough like a
stats.distributions instance (i.e. they have a ``ppf`` method) are also
accepted.
fit : bool, optional
Fit a least-squares regression (best-fit) line to the sample data if
True (default).
plot : object, optional
If given, plots the quantiles.
If given and `fit` is True, also plots the least squares fit.
`plot` is an object that has to have methods "plot" and "text".
The `matplotlib.pyplot` module or a Matplotlib Axes object can be used,
or a custom object with the same methods.
Default is None, which means that no plot is created.
Returns
-------
About this issue
- Original URL
- State: closed
- Created 2 years ago
- Comments: 16 (16 by maintainers)
Commits related to this issue
- DOC: added rvalue description in stats.probplot closes #16333 — committed to harivamsi9/scipy by deleted user 2 years ago
@tupui please check the PR, this is my first ever Open Source Contribution. Thank you so much for helping me out.
Yes we’ve seen this issue. There are some dependencies conflicts on windows. I don’t know how to fix this yet and don’t have a windows machine to investigate.
Meanwhile, I suggest you either use WSL, another system, docker or gitpod. See our guides. Note that for this particular PR, since there is mostly doc changes you could send a PR without locally testing.
What is the output of
conda env create -f environment.yml
?On which system are you? If Windows, I suggest you use WSL. In general developing Python tools on Windows is a lot harder.
@tupui @harivamsi9 Sorry about that, thanks for the replies!
@boatwrong we don’t want people to compete and @harivamsi9 is still involved with this issue. There are plenty of other easy issues to tackle.