Skip to content

DOC: Fix capitalization among headings in documentation files (#32550) #32978

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

Merged
merged 6 commits into from
Apr 7, 2020
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions doc/source/development/policies.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Policies

.. _policies.version:

Version Policy
Version policy
~~~~~~~~~~~~~~

.. versionchanged:: 1.0.0
Expand Down Expand Up @@ -48,7 +48,7 @@ deprecation removed in the next next major release (2.0.0).
These policies do not apply to features marked as **experimental** in the documentation.
pandas may change the behavior of experimental features at any time.

Python Support
Python support
~~~~~~~~~~~~~~

pandas will only drop support for specific Python versions (e.g. 3.6.x, 3.7.x) in
Expand Down
2 changes: 1 addition & 1 deletion doc/source/development/roadmap.rst
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ We'd like to fund improvements and maintenance of these tools to

.. _roadmap.evolution:

Roadmap Evolution
Roadmap evolution
-----------------

pandas continues to evolve. The direction is primarily determined by community
Expand Down
2 changes: 1 addition & 1 deletion doc/source/ecosystem.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
{{ header }}

****************
Pandas ecosystem
pandas ecosystem
****************

Increasingly, packages are being built on top of pandas to address specific needs
Expand Down
4 changes: 2 additions & 2 deletions doc/source/getting_started/comparison/comparison_with_sas.rst
Original file line number Diff line number Diff line change
Expand Up @@ -698,7 +698,7 @@ In pandas this would be written as:
tips.groupby(['sex', 'smoker']).first()


Other Considerations
Other considerations
--------------------

Disk vs memory
Expand Down Expand Up @@ -752,4 +752,4 @@ to interop data between SAS and pandas is to serialize to csv.
Wall time: 14.6 s

In [9]: %time df = pd.read_csv('big.csv')
Wall time: 4.86 s
Wall time: 4.86 s
6 changes: 3 additions & 3 deletions doc/source/getting_started/comparison/comparison_with_sql.rst
Original file line number Diff line number Diff line change
Expand Up @@ -388,10 +388,10 @@ In pandas, you can use :meth:`~pandas.concat` in conjunction with

pd.concat([df1, df2]).drop_duplicates()

Pandas equivalents for some SQL analytic and aggregate functions
pandas equivalents for some SQL analytic and aggregate functions
----------------------------------------------------------------

Top N rows with offset
Top n rows with offset
~~~~~~~~~~~~~~~~~~~~~~

.. code-block:: sql
Expand All @@ -405,7 +405,7 @@ Top N rows with offset

tips.nlargest(10 + 5, columns='tip').tail(10)

Top N rows per group
Top n rows per group
~~~~~~~~~~~~~~~~~~~~

.. code-block:: sql
Expand Down