-
-
Notifications
You must be signed in to change notification settings - Fork 18.1k
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
Spellcheck #19017
Spellcheck #19017
Conversation
can you add a lint rule for this (and other things that we want to check globally) |
also can you add a note in the whats new about documentation edits (there is a section) and include these PR#'s ? |
Codecov Report
@@ Coverage Diff @@
## master #19017 +/- ##
=======================================
Coverage 91.56% 91.56%
=======================================
Files 150 150
Lines 48942 48942
=======================================
Hits 44816 44816
Misses 4126 4126
Continue to review full report at Codecov.
|
@jreback I've added a reference to this and earlier PRs in |
rebase and push again, fixed some hanging by Travis CI |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
small comments. can you add a rule in lint.sh?
doc/source/cookbook.rst
Outdated
@@ -41,7 +41,7 @@ above what the in-line examples offer. | |||
Pandas (pd) and Numpy (np) are the only two abbreviated imported modules. The rest are kept | |||
explicitly imported for newer users. | |||
|
|||
These examples are written for python 3.4. Minor tweaks might be necessary for earlier python | |||
These examples are written for Python 3.4. Minor tweaks might be necessary for earlier python |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can you make this 3.6
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
or rather say Python 3
doc/source/groupby.rst
Outdated
- A dict or Series, providing a ``label -> group name`` mapping | ||
- A Python function, to be called on each of the axis labels. | ||
- A list or NumPy array of the same length as the selected axis. | ||
- A dict or Series, providing a ``label -> group name`` mapping. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can you double-backticks Series/DataFrame when you see
@jreback - I've addressed the review, rebased and pushed. I could not figure out good logic for a rule in |
@tommyod the grep command below could be a starter for you. This will find any instance of It could miss some lines like
|
thanks @tommyod yeah a rule similar to
is close, though picking up extra things so prob have to add a bit to it would take as a followup |
This PR is a continuation of my read-through of the docs, the earlier PRs are #18941, #18973 and #18948.
The changes included in this PR include
/docs/source/
.groupby.rst
andmissing_data.rst
:meth:...
) where appropriate.Feedback is very welcome.