Skip to content

Commit 542ef40

Browse files
authored
Updated headers for files in doc/source/whatsnew (#33378)
1 parent 12b0d45 commit 542ef40

File tree

5 files changed

+14
-14
lines changed

5 files changed

+14
-14
lines changed

doc/source/whatsnew/v0.19.0.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -377,15 +377,15 @@ For ``MultiIndex``, values are dropped if any level is missing by default. Speci
377377

378378
.. _whatsnew_0190.gbq:
379379

380-
Google BigQuery Enhancements
380+
Google BigQuery enhancements
381381
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
382382

383383
- The :func:`read_gbq` method has gained the ``dialect`` argument to allow users to specify whether to use BigQuery's legacy SQL or BigQuery's standard SQL. See the `docs <https://pandas-gbq.readthedocs.io/en/latest/reading.html>`__ for more details (:issue:`13615`).
384384
- The :func:`~DataFrame.to_gbq` method now allows the DataFrame column order to differ from the destination table schema (:issue:`11359`).
385385

386386
.. _whatsnew_0190.errstate:
387387

388-
Fine-grained numpy errstate
388+
Fine-grained NumPy errstate
389389
^^^^^^^^^^^^^^^^^^^^^^^^^^^
390390

391391
Previous versions of pandas would permanently silence numpy's ufunc error handling when ``pandas`` was imported. Pandas did this in order to silence the warnings that would arise from using numpy ufuncs on missing data, which are usually represented as ``NaN`` s. Unfortunately, this silenced legitimate warnings arising in non-pandas code in the application. Starting with 0.19.0, pandas will use the ``numpy.errstate`` context manager to silence these warnings in a more fine-grained manner, only around where these operations are actually used in the pandas code base. (:issue:`13109`, :issue:`13145`)
@@ -1185,7 +1185,7 @@ the result of calling :func:`read_csv` without the ``chunksize=`` argument
11851185
11861186
.. _whatsnew_0190.sparse:
11871187

1188-
Sparse Changes
1188+
Sparse changes
11891189
^^^^^^^^^^^^^^
11901190

11911191
These changes allow pandas to handle sparse data with more dtypes, and for work to make a smoother experience with data handling.

doc/source/whatsnew/v0.20.0.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ To convert a ``SparseDataFrame`` back to sparse SciPy matrix in COO format, you
356356
357357
.. _whatsnew_0200.enhancements.style_excel:
358358

359-
Excel output for styled DataFrames
359+
Excel output for styled dataframes
360360
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
361361

362362
Experimental support has been added to export ``DataFrame.style`` formats to Excel using the ``openpyxl`` engine. (:issue:`15530`)
@@ -813,7 +813,7 @@ New behavior:
813813
814814
.. _whatsnew_0200.api_breaking.gbq:
815815

816-
Pandas Google BigQuery support has moved
816+
pandas Google BigQuery support has moved
817817
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
818818

819819
pandas has split off Google BigQuery support into a separate package ``pandas-gbq``. You can ``conda install pandas-gbq -c conda-forge`` or
@@ -1289,7 +1289,7 @@ A new public ``pandas.plotting`` module has been added that holds plotting funct
12891289

12901290
.. _whatsnew_0200.privacy.development:
12911291

1292-
Other Development Changes
1292+
Other development changes
12931293
^^^^^^^^^^^^^^^^^^^^^^^^^
12941294

12951295
- Building pandas for development now requires ``cython >= 0.23`` (:issue:`14831`)

doc/source/whatsnew/v0.24.0.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -733,7 +733,7 @@ is the case with :attr:`Period.end_time`, for example
733733
734734
.. _whatsnew_0240.api_breaking.datetime_unique:
735735

736-
Series.unique for Timezone-Aware Data
736+
Series.unique for timezone-aware data
737737
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
738738

739739
The return type of :meth:`Series.unique` for datetime with timezone values has changed
@@ -1131,7 +1131,7 @@ data is incompatible with a passed ``dtype=`` (:issue:`15832`)
11311131
11321132
.. _whatsnew_0240.api.concat_categorical:
11331133

1134-
Concatenation Changes
1134+
Concatenation changes
11351135
^^^^^^^^^^^^^^^^^^^^^
11361136

11371137
Calling :func:`pandas.concat` on a ``Categorical`` of ints with NA values now

doc/source/whatsnew/v0.25.0.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ See :ref:`groupby.aggregate.named` for more.
8585

8686
.. _whatsnew_0250.enhancements.multiple_lambdas:
8787

88-
Groupby Aggregation with multiple lambdas
88+
Groupby aggregation with multiple lambdas
8989
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
9090

9191
You can now provide multiple lambda functions to a list-like aggregation in
@@ -1243,7 +1243,7 @@ Sparse
12431243
- Bug in :func:`numpy.modf` on a :class:`SparseArray`. Now a tuple of :class:`SparseArray` is returned (:issue:`26946`).
12441244
12451245
1246-
Build Changes
1246+
Build changes
12471247
^^^^^^^^^^^^^
12481248
12491249
- Fix install error with PyPy on macOS (:issue:`26536`)

doc/source/whatsnew/v1.0.0.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ including other versions of pandas.
1515
1.0.
1616

1717

18-
New Deprecation Policy
18+
New deprecation policy
1919
~~~~~~~~~~~~~~~~~~~~~~
2020

2121
Starting with Pandas 1.0.0, pandas will adopt a variant of `SemVer`_ to
@@ -61,7 +61,7 @@ the :ref:`custom window rolling documentation <stats.custom_rolling_window>`
6161

6262
.. _whatsnew_100.to_markdown:
6363

64-
Converting to Markdown
64+
Converting to markdown
6565
^^^^^^^^^^^^^^^^^^^^^^
6666

6767
We've added :meth:`~DataFrame.to_markdown` for creating a markdown table (:issue:`11052`)
@@ -746,7 +746,7 @@ Optional libraries below the lowest tested version may still work, but are not c
746746

747747
See :ref:`install.dependencies` and :ref:`install.optional_dependencies` for more.
748748

749-
Build Changes
749+
Build changes
750750
^^^^^^^^^^^^^
751751

752752
Pandas has added a `pyproject.toml <https://www.python.org/dev/peps/pep-0517/>`_ file and will no longer include
@@ -778,7 +778,7 @@ Other API changes
778778

779779
.. _whatsnew_100.api.documentation:
780780

781-
Documentation Improvements
781+
Documentation improvements
782782
^^^^^^^^^^^^^^^^^^^^^^^^^^
783783

784784
- Added new section on :ref:`scale` (:issue:`28315`).

0 commit comments

Comments
 (0)