-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
DOC: Broken links from generated documentation to github #2821
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Thanks for the report on the broken links. Unfortunately I'm sure yet how to fix these -- I doubt our docstring links have ever worked on readthedocs. As for you other issue, xarray uses the default You should be set it by passing |
I just went through a bunch of the doc pages and the "Edit on Github" link now works on all of them...I think this issue could be closed? |
yeah it works for pages like This issue seems to be about linking to source code from the API reference (I think) which would be a really nice addition. Maybe take a look at adding https://www.sphinx-doc.org/en/master/usage/extensions/viewcode.html? |
Pinning this, would be great if anyone wants to have a go. It's a shame to have the link for doc contributions -- maybe our most important place for contributions, particularly from new contributors -- be broken. |
|
This is the link that is used when i click on the "Edit on Github" button in the documentation.
https://github.com/pydata/xarray/blob/stable/doc/generated/xarray.DataArray.std.rst
I wish to access the implementation of Dataset.std() because I am not able to reproduce the results when I calculate the sample standard deviation. Based on the formula below.
STD = sqrt( sum( x - x.mean() )**2 / (n-1) )
The text was updated successfully, but these errors were encountered: