From 79d91097ffbefaf92ec3f128010687ddc6218d6a Mon Sep 17 00:00:00 2001 From: Damiano Cangini Date: Thu, 19 Mar 2020 19:57:38 +0000 Subject: [PATCH 1/3] BUG: #32550 Fix capitalization among headings in documentation files --- .../development/contributing_docstring.rst | 16 ++++++++-------- doc/source/development/developer.rst | 6 +++--- doc/source/development/extending.rst | 4 ++-- doc/source/development/maintaining.rst | 12 ++++++------ doc/source/development/meeting.rst | 3 +-- doc/source/development/policies.rst | 6 +++--- doc/source/development/roadmap.rst | 4 ++-- doc/source/ecosystem.rst | 2 +- doc/source/getting_started/10min.rst | 4 ++-- doc/source/getting_started/basics.rst | 8 ++++---- .../comparison/comparison_with_sas.rst | 4 ++-- .../comparison/comparison_with_sql.rst | 8 ++++---- .../comparison/comparison_with_stata.rst | 4 ++-- .../intro_tutorials/01_table_oriented.rst | 2 +- doc/source/getting_started/tutorials.rst | 4 ++-- doc/source/reference/arrays.rst | 4 ++-- doc/source/reference/frame.rst | 4 ++-- doc/source/reference/window.rst | 4 ++-- doc/source/user_guide/boolean.rst | 4 ++-- doc/source/user_guide/categorical.rst | 4 ++-- doc/source/user_guide/computation.rst | 6 +++--- doc/source/user_guide/cookbook.rst | 8 ++++---- doc/source/user_guide/gotchas.rst | 4 ++-- doc/source/user_guide/groupby.rst | 4 ++-- doc/source/user_guide/index.rst | 4 ++-- doc/source/user_guide/indexing.rst | 2 +- doc/source/user_guide/io.rst | 4 ++-- doc/source/user_guide/merging.rst | 6 +++--- doc/source/user_guide/options.rst | 4 ++-- doc/source/user_guide/reshaping.rst | 4 ++-- doc/source/user_guide/text.rst | 8 ++++---- doc/source/user_guide/timeseries.rst | 6 +++--- doc/source/user_guide/visualization.rst | 4 ++-- doc/source/whatsnew/index.rst | 4 ++-- doc/source/whatsnew/v0.10.0.rst | 4 ++-- doc/source/whatsnew/v0.14.0.rst | 4 ++-- doc/source/whatsnew/v0.15.0.rst | 4 ++-- doc/source/whatsnew/v0.16.0.rst | 4 ++-- doc/source/whatsnew/v0.17.0.rst | 6 +++--- doc/source/whatsnew/v0.18.0.rst | 4 ++-- doc/source/whatsnew/v0.18.1.rst | 4 ++-- doc/source/whatsnew/v0.19.0.rst | 8 ++++---- doc/source/whatsnew/v0.20.0.rst | 8 ++++---- doc/source/whatsnew/v0.21.0.rst | 6 +++--- doc/source/whatsnew/v0.24.0.rst | 6 +++--- doc/source/whatsnew/v0.25.0.rst | 6 +++--- doc/source/whatsnew/v1.0.0.rst | 10 +++++----- doc/source/whatsnew/v1.0.2.rst | 4 ++-- 48 files changed, 126 insertions(+), 127 deletions(-) diff --git a/doc/source/development/contributing_docstring.rst b/doc/source/development/contributing_docstring.rst index 1c99b341f6c5a..e61e2debb538a 100644 --- a/doc/source/development/contributing_docstring.rst +++ b/doc/source/development/contributing_docstring.rst @@ -160,7 +160,7 @@ backticks. It is considered inline code: .. _docstring.short_summary: -Section 1: Short summary +Section 1: short summary ~~~~~~~~~~~~~~~~~~~~~~~~ The short summary is a single sentence that expresses what the function does in @@ -228,7 +228,7 @@ infinitive verb. .. _docstring.extended_summary: -Section 2: Extended summary +Section 2: extended summary ~~~~~~~~~~~~~~~~~~~~~~~~~~~ The extended summary provides details on what the function does. It should not @@ -259,7 +259,7 @@ their use cases, if it is not too generic. .. _docstring.parameters: -Section 3: Parameters +Section 3: parameters ~~~~~~~~~~~~~~~~~~~~~ The details of the parameters will be added in this section. This section has @@ -424,7 +424,7 @@ For axis, the convention is to use something like: .. _docstring.returns: -Section 4: Returns or Yields +Section 4: returns or yields ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ If the method returns a value, it will be documented in this section. Also @@ -505,7 +505,7 @@ If the method yields its value: .. _docstring.see_also: -Section 5: See Also +Section 5: see also ~~~~~~~~~~~~~~~~~~~ This section is used to let users know about pandas functionality @@ -583,7 +583,7 @@ For example: .. _docstring.notes: -Section 6: Notes +Section 6: notes ~~~~~~~~~~~~~~~~ This is an optional section used for notes about the implementation of the @@ -597,7 +597,7 @@ This section follows the same format as the extended summary section. .. _docstring.examples: -Section 7: Examples +Section 7: examples ~~~~~~~~~~~~~~~~~~~ This is one of the most important sections of a docstring, even if it is @@ -998,4 +998,4 @@ mapping function names to docstrings. Wherever possible, we prefer using See ``pandas.core.generic.NDFrame.fillna`` for an example template, and ``pandas.core.series.Series.fillna`` and ``pandas.core.generic.frame.fillna`` -for the filled versions. +for the filled versions. \ No newline at end of file diff --git a/doc/source/development/developer.rst b/doc/source/development/developer.rst index 33646e5d74757..fbd83af3de82e 100644 --- a/doc/source/development/developer.rst +++ b/doc/source/development/developer.rst @@ -62,7 +62,7 @@ for each column, *including the index columns*. This has JSON form: See below for the detailed specification for these. -Index Metadata Descriptors +Index metadata descriptors ~~~~~~~~~~~~~~~~~~~~~~~~~~ ``RangeIndex`` can be stored as metadata only, not requiring serialization. The @@ -89,7 +89,7 @@ with other column names) a disambiguating name with pattern matching columns, ``name`` attribute is always stored in the column descriptors as above. -Column Metadata +Column metadata ~~~~~~~~~~~~~~~ ``pandas_type`` is the logical type of the column, and is one of: @@ -182,4 +182,4 @@ As an example of fully-formed metadata: 'creator': { 'library': 'pyarrow', 'version': '0.13.0' - }} + }} \ No newline at end of file diff --git a/doc/source/development/extending.rst b/doc/source/development/extending.rst index 270f20e8118bc..6bb89c4973bca 100644 --- a/doc/source/development/extending.rst +++ b/doc/source/development/extending.rst @@ -210,7 +210,7 @@ will .. _extending.extension.ufunc: -NumPy Universal Functions +NumPy universal functions ^^^^^^^^^^^^^^^^^^^^^^^^^ :class:`Series` implements ``__array_ufunc__``. As part of the implementation, @@ -501,4 +501,4 @@ registers the default "matplotlib" backend as follows. More information on how to implement a third-party plotting backend can be found at -https://github.com/pandas-dev/pandas/blob/master/pandas/plotting/__init__.py#L1. +https://github.com/pandas-dev/pandas/blob/master/pandas/plotting/__init__.py#L1. \ No newline at end of file diff --git a/doc/source/development/maintaining.rst b/doc/source/development/maintaining.rst index e65b66fc243c5..6c9fe8b10c9ea 100644 --- a/doc/source/development/maintaining.rst +++ b/doc/source/development/maintaining.rst @@ -1,7 +1,7 @@ .. _maintaining: ****************** -Pandas Maintenance +pandas maintenance ****************** This guide is for pandas' maintainers. It may also be interesting to contributors @@ -41,7 +41,7 @@ reading. .. _maintaining.triage: -Issue Triage +Issue triage ------------ @@ -123,7 +123,7 @@ Here's a typical workflow for triaging a newly opened issue. .. _maintaining.closing: -Closing Issues +Closing issues -------------- Be delicate here: many people interpret closing an issue as us saying that the @@ -132,7 +132,7 @@ respond or self-close their issue if it's determined that the behavior is not a or the feature is out of scope. Sometimes reporters just go away though, and we'll close the issue after the conversation has died. -Reviewing Pull Requests +Reviewing pull requests ----------------------- Anybody can review a pull request: regular contributors, triagers, or core-team @@ -144,7 +144,7 @@ members. Here are some guidelines to check. * User-facing changes should have a whatsnew in the appropriate file. * Regression tests should reference the original GitHub issue number like ``# GH-1234``. -Cleaning up old Issues +Cleaning up old issues ---------------------- Every open issue in pandas has a cost. Open issues make finding duplicates harder, @@ -164,7 +164,7 @@ If an older issue lacks a reproducible example, label it as "Needs Info" and ask them to provide one (or write one yourself if possible). If one isn't provide reasonably soon, close it according to the policies in :ref:`maintaining.closing`. -Cleaning up old Pull Requests +Cleaning up old pull requests ----------------------------- Occasionally, contributors are unable to finish off a pull request. diff --git a/doc/source/development/meeting.rst b/doc/source/development/meeting.rst index 1d19408692cda..37b264be9defe 100644 --- a/doc/source/development/meeting.rst +++ b/doc/source/development/meeting.rst @@ -1,7 +1,7 @@ .. _meeting: ================== -Developer Meetings +Developer meetings ================== We hold regular developer meetings on the second Wednesday @@ -29,4 +29,3 @@ You can subscribe to this calendar with the following links: Additionally, we'll sometimes have one-off meetings on specific topics. These will be published on the same calendar. - diff --git a/doc/source/development/policies.rst b/doc/source/development/policies.rst index 224948738341e..64004feff29a0 100644 --- a/doc/source/development/policies.rst +++ b/doc/source/development/policies.rst @@ -6,7 +6,7 @@ Policies .. _policies.version: -Version Policy +Version policy ~~~~~~~~~~~~~~ .. versionchanged:: 1.0.0 @@ -48,10 +48,10 @@ 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 pandas **major** releases. -.. _SemVer: https://semver.org +.. _SemVer: https://semver.org \ No newline at end of file diff --git a/doc/source/development/roadmap.rst b/doc/source/development/roadmap.rst index fafe63d80249c..e9cb5c44fa491 100644 --- a/doc/source/development/roadmap.rst +++ b/doc/source/development/roadmap.rst @@ -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 @@ -176,4 +176,4 @@ should be notified of the proposal. When there's agreement that an implementation would be welcome, the roadmap should be updated to include the summary and a -link to the discussion issue. +link to the discussion issue. \ No newline at end of file diff --git a/doc/source/ecosystem.rst b/doc/source/ecosystem.rst index b7e53b84f0e02..fd5e7c552fe0a 100644 --- a/doc/source/ecosystem.rst +++ b/doc/source/ecosystem.rst @@ -5,7 +5,7 @@ {{ header }} **************** -Pandas ecosystem +pandas ecosystem **************** Increasingly, packages are being built on top of pandas to address specific needs diff --git a/doc/source/getting_started/10min.rst b/doc/source/getting_started/10min.rst index 9994287c827e3..b29e87e90b465 100644 --- a/doc/source/getting_started/10min.rst +++ b/doc/source/getting_started/10min.rst @@ -428,7 +428,7 @@ See more at :ref:`Histogramming and Discretization `. s s.value_counts() -String Methods +String methods ~~~~~~~~~~~~~~ Series is equipped with a set of string processing methods in the `str` @@ -809,4 +809,4 @@ If you are attempting to perform an operation you might see an exception like: See :ref:`Comparisons` for an explanation and what to do. -See :ref:`Gotchas` as well. +See :ref:`Gotchas` as well. \ No newline at end of file diff --git a/doc/source/getting_started/basics.rst b/doc/source/getting_started/basics.rst index c6d9a48fcf8ed..56f6670dccf20 100644 --- a/doc/source/getting_started/basics.rst +++ b/doc/source/getting_started/basics.rst @@ -1871,7 +1871,7 @@ Series has the :meth:`~Series.searchsorted` method, which works similarly to .. _basics.nsorted: -smallest / largest values +Smallest / largest values ~~~~~~~~~~~~~~~~~~~~~~~~~ ``Series`` has the :meth:`~Series.nsmallest` and :meth:`~Series.nlargest` methods which return the @@ -2142,7 +2142,7 @@ Convert certain columns to a specific dtype by passing a dict to :meth:`~DataFra .. _basics.object_conversion: -object conversion +Object conversion ~~~~~~~~~~~~~~~~~ pandas offers various functions to try to force conversion of types from the ``object`` dtype to other types. @@ -2257,7 +2257,7 @@ as DataFrames. However, with :meth:`~pandas.DataFrame.apply`, we can "apply" the df df.apply(pd.to_timedelta) -gotchas +Gotchas ~~~~~~~ Performing selection operations on ``integer`` type data can easily upcast the data to ``floating``. @@ -2372,4 +2372,4 @@ All NumPy dtypes are subclasses of ``numpy.generic``: .. note:: Pandas also defines the types ``category``, and ``datetime64[ns, tz]``, which are not integrated into the normal - NumPy hierarchy and won't show up with the above function. + NumPy hierarchy and won't show up with the above function. \ No newline at end of file diff --git a/doc/source/getting_started/comparison/comparison_with_sas.rst b/doc/source/getting_started/comparison/comparison_with_sas.rst index 4e284fe7b5968..f12d97d1d0fde 100644 --- a/doc/source/getting_started/comparison/comparison_with_sas.rst +++ b/doc/source/getting_started/comparison/comparison_with_sas.rst @@ -698,7 +698,7 @@ In pandas this would be written as: tips.groupby(['sex', 'smoker']).first() -Other Considerations +Other considerations -------------------- Disk vs memory @@ -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 \ No newline at end of file diff --git a/doc/source/getting_started/comparison/comparison_with_sql.rst b/doc/source/getting_started/comparison/comparison_with_sql.rst index 6a03c06de3699..cc642e2a2d780 100644 --- a/doc/source/getting_started/comparison/comparison_with_sql.rst +++ b/doc/source/getting_started/comparison/comparison_with_sql.rst @@ -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 @@ -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 @@ -490,4 +490,4 @@ In pandas we select the rows that should remain, instead of deleting them .. ipython:: python - tips = tips.loc[tips['tip'] <= 9] + tips = tips.loc[tips['tip'] <= 9] \ No newline at end of file diff --git a/doc/source/getting_started/comparison/comparison_with_stata.rst b/doc/source/getting_started/comparison/comparison_with_stata.rst index decf12db77af2..20704956ef531 100644 --- a/doc/source/getting_started/comparison/comparison_with_stata.rst +++ b/doc/source/getting_started/comparison/comparison_with_stata.rst @@ -2,7 +2,7 @@ {{ header }} -Comparison with Stata +Comparison with STATA ********************* For potential users coming from `Stata `__ this page is meant to demonstrate how different Stata operations would be @@ -675,4 +675,4 @@ data able to be loaded in pandas is limited by your machine's memory. If out of core processing is needed, one possibility is the `dask.dataframe `_ library, which provides a subset of pandas functionality for an -on-disk ``DataFrame``. +on-disk ``DataFrame``. \ No newline at end of file diff --git a/doc/source/getting_started/intro_tutorials/01_table_oriented.rst b/doc/source/getting_started/intro_tutorials/01_table_oriented.rst index 02e59b3c81755..9ee3bfc3b8e79 100644 --- a/doc/source/getting_started/intro_tutorials/01_table_oriented.rst +++ b/doc/source/getting_started/intro_tutorials/01_table_oriented.rst @@ -26,7 +26,7 @@ documentation. -Pandas data table representation +pandas data table representation ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ .. image:: ../../_static/schemas/01_table_dataframe.svg diff --git a/doc/source/getting_started/tutorials.rst b/doc/source/getting_started/tutorials.rst index 434d791474807..2512e59ae31d2 100644 --- a/doc/source/getting_started/tutorials.rst +++ b/doc/source/getting_started/tutorials.rst @@ -30,7 +30,7 @@ entails. For the table of contents, see the `pandas-cookbook GitHub repository `_. -Learn Pandas by Hernan Rojas +Learn pandas by hernan rojas ---------------------------- A set of lesson for new pandas users: https://bitbucket.org/hrojas/learn-pandas @@ -106,4 +106,4 @@ Various tutorials * `Intro to pandas data structures, by Greg Reda `_ * `Pandas and Python: Top 10, by Manish Amde `_ * `Pandas DataFrames Tutorial, by Karlijn Willems `_ -* `A concise tutorial with real life examples `_ +* `A concise tutorial with real life examples `_ \ No newline at end of file diff --git a/doc/source/reference/arrays.rst b/doc/source/reference/arrays.rst index c71350ecd73b3..e4256045346f0 100644 --- a/doc/source/reference/arrays.rst +++ b/doc/source/reference/arrays.rst @@ -3,7 +3,7 @@ .. _api.arrays: ============= -Pandas arrays +pandas arrays ============= .. currentmodule:: pandas @@ -519,4 +519,4 @@ with a bool :class:`numpy.ndarray`. DatetimeTZDtype.unit DatetimeTZDtype.tz PeriodDtype.freq - IntervalDtype.subtype + IntervalDtype.subtype \ No newline at end of file diff --git a/doc/source/reference/frame.rst b/doc/source/reference/frame.rst index b326bbb5a465e..3b0ef3231fcfe 100644 --- a/doc/source/reference/frame.rst +++ b/doc/source/reference/frame.rst @@ -251,7 +251,7 @@ Combining / joining / merging DataFrame.merge DataFrame.update -Time series-related +Time Series-related ~~~~~~~~~~~~~~~~~~~ .. autosummary:: :toctree: api/ @@ -366,4 +366,4 @@ Serialization / IO / conversion DataFrame.to_string DataFrame.to_clipboard DataFrame.to_markdown - DataFrame.style + DataFrame.style \ No newline at end of file diff --git a/doc/source/reference/window.rst b/doc/source/reference/window.rst index 3db1aa12a4275..97b2c27011b4b 100644 --- a/doc/source/reference/window.rst +++ b/doc/source/reference/window.rst @@ -75,7 +75,7 @@ Exponentially-weighted moving window functions EWM.corr EWM.cov -Window Indexer +Window indexer -------------- .. currentmodule:: pandas @@ -84,4 +84,4 @@ Base class for defining custom window boundaries. .. autosummary:: :toctree: api/ - api.indexers.BaseIndexer + api.indexers.BaseIndexer \ No newline at end of file diff --git a/doc/source/user_guide/boolean.rst b/doc/source/user_guide/boolean.rst index 6370a523b9a0d..6323ea6e6477a 100644 --- a/doc/source/user_guide/boolean.rst +++ b/doc/source/user_guide/boolean.rst @@ -39,7 +39,7 @@ If you would prefer to keep the ``NA`` values you can manually fill them with `` .. _boolean.kleene: -Kleene Logical Operations +Kleene logical operations ------------------------- :class:`arrays.BooleanArray` implements `Kleene Logic`_ (sometimes called three-value logic) for @@ -99,4 +99,4 @@ In ``and`` pd.Series([True, False, np.nan], dtype="object") & True pd.Series([True, False, np.nan], dtype="boolean") & True -.. _Kleene Logic: https://en.wikipedia.org/wiki/Three-valued_logic#Kleene_and_Priest_logics +.. _Kleene Logic: https://en.wikipedia.org/wiki/Three-valued_logic#Kleene_and_Priest_logics \ No newline at end of file diff --git a/doc/source/user_guide/categorical.rst b/doc/source/user_guide/categorical.rst index a55326db748fd..dc38d08d16e59 100644 --- a/doc/source/user_guide/categorical.rst +++ b/doc/source/user_guide/categorical.rst @@ -799,7 +799,7 @@ Assigning a ``Categorical`` to parts of a column of other types will use the val .. _categorical.merge: .. _categorical.concat: -Merging / Concatenation +Merging / concatenation ~~~~~~~~~~~~~~~~~~~~~~~ By default, combining ``Series`` or ``DataFrames`` which contain the same @@ -1176,4 +1176,4 @@ Use ``copy=True`` to prevent such a behaviour or simply don't reuse ``Categorica This also happens in some cases when you supply a NumPy array instead of a ``Categorical``: using an int array (e.g. ``np.array([1,2,3,4])``) will exhibit the same behavior, while using - a string array (e.g. ``np.array(["a","b","c","a"])``) will not. + a string array (e.g. ``np.array(["a","b","c","a"])``) will not. \ No newline at end of file diff --git a/doc/source/user_guide/computation.rst b/doc/source/user_guide/computation.rst index 9951642ca98a4..ca759b6241f76 100644 --- a/doc/source/user_guide/computation.rst +++ b/doc/source/user_guide/computation.rst @@ -210,7 +210,7 @@ parameter: .. _stats.moments: -Window Functions +Window functions ---------------- .. currentmodule:: pandas.core.window @@ -323,7 +323,7 @@ We provide a number of common statistical functions: .. _stats.rolling_apply: -Rolling Apply +Rolling apply ~~~~~~~~~~~~~ The :meth:`~Rolling.apply` function takes an extra ``func`` argument and performs @@ -1065,4 +1065,4 @@ are scaled by debiasing factors (For :math:`w_i = 1`, this reduces to the usual :math:`N / (N - 1)` factor, with :math:`N = t + 1`.) See `Weighted Sample Variance `__ -on Wikipedia for further details. +on Wikipedia for further details. \ No newline at end of file diff --git a/doc/source/user_guide/cookbook.rst b/doc/source/user_guide/cookbook.rst index 4afdb14e5c39e..4afa33fda9f4b 100644 --- a/doc/source/user_guide/cookbook.rst +++ b/doc/source/user_guide/cookbook.rst @@ -179,7 +179,7 @@ One could hard code: Selection --------- -DataFrames +Dataframes ********** The :ref:`indexing ` docs. @@ -290,7 +290,7 @@ Notice the same results, with the exception of the index. .. _cookbook.multi_index: -MultiIndexing +Multiindexing ------------- The :ref:`multindexing ` docs. @@ -914,7 +914,7 @@ The :ref:`Plotting ` docs. @savefig quartile_boxplot.png df.boxplot(column='price', by='quartiles') -Data In/Out +Data in/out ----------- `Performance comparison of SQL vs HDF5 @@ -1377,4 +1377,4 @@ of the data values: df = expand_grid({'height': [60, 70], 'weight': [100, 140, 180], 'sex': ['Male', 'Female']}) - df + df \ No newline at end of file diff --git a/doc/source/user_guide/gotchas.rst b/doc/source/user_guide/gotchas.rst index f9a72b87e58d8..e0f21e0706fd6 100644 --- a/doc/source/user_guide/gotchas.rst +++ b/doc/source/user_guide/gotchas.rst @@ -317,7 +317,7 @@ See `this link `__ for more -details. +details. \ No newline at end of file diff --git a/doc/source/user_guide/groupby.rst b/doc/source/user_guide/groupby.rst index 8cd229070e365..be465d39803b0 100644 --- a/doc/source/user_guide/groupby.rst +++ b/doc/source/user_guide/groupby.rst @@ -3,7 +3,7 @@ {{ header }} ***************************** -Group By: split-apply-combine +Group by: split-apply-combine ***************************** By "group by" we are referring to a process involving one or more of the following @@ -1459,4 +1459,4 @@ column index name will be used as the name of the inserted column: result - result.stack() + result.stack() \ No newline at end of file diff --git a/doc/source/user_guide/index.rst b/doc/source/user_guide/index.rst index 30b1c0b4eac0d..637d393e1ad23 100644 --- a/doc/source/user_guide/index.rst +++ b/doc/source/user_guide/index.rst @@ -3,7 +3,7 @@ .. _user_guide: ========== -User Guide +User guide ========== The User Guide covers all of pandas by topic area. Each of the subsections @@ -42,4 +42,4 @@ Further information on any specific method can be obtained in the scale sparse gotchas - cookbook + cookbook \ No newline at end of file diff --git a/doc/source/user_guide/indexing.rst b/doc/source/user_guide/indexing.rst index 2bd3ff626f2e1..668142cd7fc08 100644 --- a/doc/source/user_guide/indexing.rst +++ b/doc/source/user_guide/indexing.rst @@ -1899,4 +1899,4 @@ This will **not** work at all, and so should be avoided: The chained assignment warnings / exceptions are aiming to inform the user of a possibly invalid assignment. There may be false positives; situations where a chained assignment is inadvertently - reported. + reported. \ No newline at end of file diff --git a/doc/source/user_guide/io.rst b/doc/source/user_guide/io.rst index c34247a49335d..d49588c1bcaa4 100644 --- a/doc/source/user_guide/io.rst +++ b/doc/source/user_guide/io.rst @@ -5268,7 +5268,7 @@ Full documentation can be found `here `__. .. _io.stata: -Stata format +STATA format ------------ .. _io.stata_writer: @@ -5722,4 +5722,4 @@ Space on disk (in bytes) 24009288 Oct 10 06:43 test_fixed.hdf 24009288 Oct 10 06:43 test_fixed_compress.hdf 24458940 Oct 10 06:44 test_table.hdf - 24458940 Oct 10 06:44 test_table_compress.hdf + 24458940 Oct 10 06:44 test_table_compress.hdf \ No newline at end of file diff --git a/doc/source/user_guide/merging.rst b/doc/source/user_guide/merging.rst index 49f4bbb6beb19..3e5d256931afe 100644 --- a/doc/source/user_guide/merging.rst +++ b/doc/source/user_guide/merging.rst @@ -1143,7 +1143,7 @@ This is equivalent but less verbose and more memory efficient / faster than this .. _merging.join_with_two_multi_indexes: -Joining with two MultiIndexes +Joining with two multiindexes ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ This is supported in a limited way, provided that the index for the right @@ -1303,7 +1303,7 @@ similarly. .. _merging.multiple_join: -Joining multiple DataFrames +Joining multiple dataframes ~~~~~~~~~~~~~~~~~~~~~~~~~~~ A list or tuple of ``DataFrames`` can also be passed to :meth:`~DataFrame.join` @@ -1480,4 +1480,4 @@ exclude exact matches on time. Note that though we exclude the exact matches on='time', by='ticker', tolerance=pd.Timedelta('10ms'), - allow_exact_matches=False) + allow_exact_matches=False) \ No newline at end of file diff --git a/doc/source/user_guide/options.rst b/doc/source/user_guide/options.rst index 5817efb31814e..b3e4cdeedc716 100644 --- a/doc/source/user_guide/options.rst +++ b/doc/source/user_guide/options.rst @@ -140,7 +140,7 @@ More information can be found in the `ipython documentation .. _options.frequently_used: -Frequently Used Options +Frequently used options ----------------------- The following is a walk-through of the more frequently used display options. @@ -575,4 +575,4 @@ Only ``'display.max_rows'`` are serialized and published. .. ipython:: python :suppress: - pd.reset_option('display.html.table_schema') + pd.reset_option('display.html.table_schema') \ No newline at end of file diff --git a/doc/source/user_guide/reshaping.rst b/doc/source/user_guide/reshaping.rst index 58733b852e3a1..3023357aabf19 100644 --- a/doc/source/user_guide/reshaping.rst +++ b/doc/source/user_guide/reshaping.rst @@ -272,7 +272,7 @@ the right thing: .. _reshaping.melt: -Reshaping by Melt +Reshaping by melt ----------------- .. image:: ../_static/reshaping_melt.png @@ -842,4 +842,4 @@ Creating a long form DataFrame is now straightforward using explode and chained .. ipython:: python - df.assign(var1=df.var1.str.split(',')).explode('var1') + df.assign(var1=df.var1.str.split(',')).explode('var1') \ No newline at end of file diff --git a/doc/source/user_guide/text.rst b/doc/source/user_guide/text.rst index 2e4d0fecaf5cf..919aaf39af5fc 100644 --- a/doc/source/user_guide/text.rst +++ b/doc/source/user_guide/text.rst @@ -8,7 +8,7 @@ Working with text data .. _text.types: -Text Data Types +Text data types --------------- .. versionadded:: 1.0.0 @@ -113,7 +113,7 @@ Everything else that follows in the rest of this document applies equally to .. _text.string_methods: -String Methods +String methods -------------- Series and Index are equipped with a set of string processing methods @@ -633,7 +633,7 @@ same result as a ``Series.str.extractall`` with a default index (starts from 0). pd.Series(["a1a2", "b1", "c1"], dtype="string").str.extractall(two_groups) -Testing for Strings that match or contain a pattern +Testing for strings that match or contain a pattern --------------------------------------------------- You can check whether elements contain a pattern: @@ -744,4 +744,4 @@ Method summary :meth:`~Series.str.isupper`;Equivalent to ``str.isupper`` :meth:`~Series.str.istitle`;Equivalent to ``str.istitle`` :meth:`~Series.str.isnumeric`;Equivalent to ``str.isnumeric`` - :meth:`~Series.str.isdecimal`;Equivalent to ``str.isdecimal`` + :meth:`~Series.str.isdecimal`;Equivalent to ``str.isdecimal`` \ No newline at end of file diff --git a/doc/source/user_guide/timeseries.rst b/doc/source/user_guide/timeseries.rst index f208c8d576131..5fb47aa260921 100644 --- a/doc/source/user_guide/timeseries.rst +++ b/doc/source/user_guide/timeseries.rst @@ -122,7 +122,7 @@ as ``np.nan`` does for float data. .. _timeseries.representation: -Timestamps vs. Time Spans +Timestamps vs. time spans ------------------------- Timestamped data is the most basic type of time series data that associates @@ -1434,7 +1434,7 @@ or calendars with additional rules. .. _timeseries.advanced_datetime: -Time Series-Related Instance Methods +Time Series-related instance methods ------------------------------------ Shifting / lagging @@ -2467,4 +2467,4 @@ convert time zone aware timestamps. .. ipython:: python - s_aware.to_numpy(dtype='datetime64[ns]') + s_aware.to_numpy(dtype='datetime64[ns]') \ No newline at end of file diff --git a/doc/source/user_guide/visualization.rst b/doc/source/user_guide/visualization.rst index 756dd06aced7f..451ddf046416e 100644 --- a/doc/source/user_guide/visualization.rst +++ b/doc/source/user_guide/visualization.rst @@ -796,7 +796,7 @@ before plotting. .. _visualization.tools: -Plotting Tools +Plotting tools -------------- These functions can be imported from ``pandas.plotting`` @@ -1045,7 +1045,7 @@ for more information. .. _visualization.formatting: -Plot Formatting +Plot formatting --------------- Setting the plot style diff --git a/doc/source/whatsnew/index.rst b/doc/source/whatsnew/index.rst index cbfeb0352c283..ec9e4544b6f10 100644 --- a/doc/source/whatsnew/index.rst +++ b/doc/source/whatsnew/index.rst @@ -3,7 +3,7 @@ {{ header }} ************* -Release Notes +Release notes ************* This is the list of changes to pandas between each release. For full details, @@ -231,4 +231,4 @@ Version 0.4 .. toctree:: :maxdepth: 2 - v0.4.x + v0.4.x \ No newline at end of file diff --git a/doc/source/whatsnew/v0.10.0.rst b/doc/source/whatsnew/v0.10.0.rst index 2e0442364b2f3..9282a02189545 100644 --- a/doc/source/whatsnew/v0.10.0.rst +++ b/doc/source/whatsnew/v0.10.0.rst @@ -490,7 +490,7 @@ Updated PyTables support however, query terms using the prior (undocumented) methodology are unsupported. You must read in the entire file and write it out using the new format to take advantage of the updates. -N dimensional Panels (experimental) +N dimensional panels (experimental) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Adding experimental support for Panel4D and factory functions to create n-dimensional named panels. @@ -528,4 +528,4 @@ on GitHub for a complete list. Contributors ~~~~~~~~~~~~ -.. contributors:: v0.9.0..v0.10.0 +.. contributors:: v0.9.0..v0.10.0 \ No newline at end of file diff --git a/doc/source/whatsnew/v0.14.0.rst b/doc/source/whatsnew/v0.14.0.rst index 25a75492d78fb..0041f6f03afef 100644 --- a/doc/source/whatsnew/v0.14.0.rst +++ b/doc/source/whatsnew/v0.14.0.rst @@ -473,7 +473,7 @@ Some other enhancements to the sql functions include: .. _whatsnew_0140.slicers: -MultiIndexing using slicers +Multiindexing using slicers ~~~~~~~~~~~~~~~~~~~~~~~~~~~ In 0.14.0 we added a new way to slice MultiIndexed objects. @@ -904,7 +904,7 @@ There are no experimental changes in 0.14.0 .. _whatsnew_0140.bug_fixes: -Bug Fixes +Bug fixes ~~~~~~~~~ - Bug in Series ValueError when index doesn't match data (:issue:`6532`) diff --git a/doc/source/whatsnew/v0.15.0.rst b/doc/source/whatsnew/v0.15.0.rst index 95e354e425143..bcc6e4fd9e354 100644 --- a/doc/source/whatsnew/v0.15.0.rst +++ b/doc/source/whatsnew/v0.15.0.rst @@ -600,7 +600,7 @@ Rolling/expanding moments improvements .. _whatsnew_0150.sql: -Improvements in the sql io module +Improvements in the SQL io module ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - Added support for a ``chunksize`` parameter to ``to_sql`` function. This allows DataFrame to be written in chunks and avoid packet-size overflow errors (:issue:`8062`). @@ -1239,4 +1239,4 @@ Bug fixes Contributors ~~~~~~~~~~~~ -.. contributors:: v0.14.1..v0.15.0 +.. contributors:: v0.14.1..v0.15.0 \ No newline at end of file diff --git a/doc/source/whatsnew/v0.16.0.rst b/doc/source/whatsnew/v0.16.0.rst index 855d0b8695bb1..6c9ae51e3fa92 100644 --- a/doc/source/whatsnew/v0.16.0.rst +++ b/doc/source/whatsnew/v0.16.0.rst @@ -218,7 +218,7 @@ Backwards incompatible API changes .. _whatsnew_0160.api_breaking.timedelta: -Changes in Timedelta +Changes in timedelta ^^^^^^^^^^^^^^^^^^^^ In v0.15.0 a new scalar type ``Timedelta`` was introduced, that is a @@ -687,4 +687,4 @@ Bug fixes Contributors ~~~~~~~~~~~~ -.. contributors:: v0.15.2..v0.16.0 +.. contributors:: v0.15.2..v0.16.0 \ No newline at end of file diff --git a/doc/source/whatsnew/v0.17.0.rst b/doc/source/whatsnew/v0.17.0.rst index 67abad659dc8d..eb8c1b5efaf91 100644 --- a/doc/source/whatsnew/v0.17.0.rst +++ b/doc/source/whatsnew/v0.17.0.rst @@ -339,7 +339,7 @@ Google BigQuery enhancements .. _whatsnew_0170.east_asian_width: -Display alignment with Unicode East Asian width +Display alignment with unicode east asian width ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ .. warning:: @@ -729,7 +729,7 @@ or it can return False if broadcasting can not be done: np.array([1, 2, 3]) == np.array([1, 2]) -Changes to boolean comparisons vs. None +Changes to boolean comparisons vs. none ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Boolean comparisons of a ``Series`` vs ``None`` will now be equivalent to comparing with ``np.nan``, rather than raise ``TypeError``. (:issue:`1079`). @@ -1174,4 +1174,4 @@ Bug fixes Contributors ~~~~~~~~~~~~ -.. contributors:: v0.16.2..v0.17.0 +.. contributors:: v0.16.2..v0.17.0 \ No newline at end of file diff --git a/doc/source/whatsnew/v0.18.0.rst b/doc/source/whatsnew/v0.18.0.rst index d3f96d4185d65..555b9ab310d71 100644 --- a/doc/source/whatsnew/v0.18.0.rst +++ b/doc/source/whatsnew/v0.18.0.rst @@ -1197,7 +1197,7 @@ Performance improvements .. _whatsnew_0180.bug_fixes: -Bug Fixes +Bug fixes ~~~~~~~~~ - Bug in ``GroupBy.size`` when data-frame is empty. (:issue:`11699`) @@ -1301,4 +1301,4 @@ Bug Fixes Contributors ~~~~~~~~~~~~ -.. contributors:: v0.17.1..v0.18.0 +.. contributors:: v0.17.1..v0.18.0 \ No newline at end of file diff --git a/doc/source/whatsnew/v0.18.1.rst b/doc/source/whatsnew/v0.18.1.rst index f786ce513f6fe..94a3cce55ae08 100644 --- a/doc/source/whatsnew/v0.18.1.rst +++ b/doc/source/whatsnew/v0.18.1.rst @@ -380,7 +380,7 @@ New behavior: .. _whatsnew_0181.numpy_compatibility: -numpy function compatibility +NumPy function compatibility ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Compatibility between pandas array-like methods (e.g. ``sum`` and ``take``) and their ``numpy`` @@ -710,4 +710,4 @@ Bug fixes Contributors ~~~~~~~~~~~~ -.. contributors:: v0.18.0..v0.18.1 +.. contributors:: v0.18.0..v0.18.1 \ No newline at end of file diff --git a/doc/source/whatsnew/v0.19.0.rst b/doc/source/whatsnew/v0.19.0.rst index 6eb509a258430..80a363859b5d3 100644 --- a/doc/source/whatsnew/v0.19.0.rst +++ b/doc/source/whatsnew/v0.19.0.rst @@ -377,7 +377,7 @@ For ``MultiIndex``, values are dropped if any level is missing by default. Speci .. _whatsnew_0190.gbq: -Google BigQuery Enhancements +Google BigQuery enhancements ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - 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 `__ for more details (:issue:`13615`). @@ -385,7 +385,7 @@ Google BigQuery Enhancements .. _whatsnew_0190.errstate: -Fine-grained numpy errstate +Fine-grained NumPy errstate ^^^^^^^^^^^^^^^^^^^^^^^^^^^ 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 .. _whatsnew_0190.sparse: -Sparse Changes +Sparse changes ^^^^^^^^^^^^^^ These changes allow pandas to handle sparse data with more dtypes, and for work to make a smoother experience with data handling. @@ -1580,4 +1580,4 @@ Bug fixes Contributors ~~~~~~~~~~~~ -.. contributors:: v0.18.1..v0.19.0 +.. contributors:: v0.18.1..v0.19.0 \ No newline at end of file diff --git a/doc/source/whatsnew/v0.20.0.rst b/doc/source/whatsnew/v0.20.0.rst index ceb1c7f27231b..9a454f190e3d7 100644 --- a/doc/source/whatsnew/v0.20.0.rst +++ b/doc/source/whatsnew/v0.20.0.rst @@ -356,7 +356,7 @@ To convert a ``SparseDataFrame`` back to sparse SciPy matrix in COO format, you .. _whatsnew_0200.enhancements.style_excel: -Excel output for styled DataFrames +Excel output for styled dataframes ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Experimental support has been added to export ``DataFrame.style`` formats to Excel using the ``openpyxl`` engine. (:issue:`15530`) @@ -813,7 +813,7 @@ New behavior: .. _whatsnew_0200.api_breaking.gbq: -Pandas Google BigQuery support has moved +pandas google BigQuery support has moved ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 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 .. _whatsnew_0200.privacy.development: -Other Development Changes +Other development changes ^^^^^^^^^^^^^^^^^^^^^^^^^ - Building pandas for development now requires ``cython >= 0.23`` (:issue:`14831`) @@ -1777,4 +1777,4 @@ Other Contributors ~~~~~~~~~~~~ -.. contributors:: v0.19.2..v0.20.0 +.. contributors:: v0.19.2..v0.20.0 \ No newline at end of file diff --git a/doc/source/whatsnew/v0.21.0.rst b/doc/source/whatsnew/v0.21.0.rst index 71969c4de6b02..6676d80b0c353 100644 --- a/doc/source/whatsnew/v0.21.0.rst +++ b/doc/source/whatsnew/v0.21.0.rst @@ -554,7 +554,7 @@ New behavior: .. _whatsnew_0210.api_breaking.loc_with_index: -Indexing with a Boolean Index +Indexing with a boolean Index ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Previously when passing a boolean ``Index`` to ``.loc``, if the index of the ``Series/DataFrame`` had ``boolean`` labels, @@ -897,7 +897,7 @@ New behavior: .. _whatsnew_0210.api.mpl_converters: -No automatic Matplotlib converters +No automatic matplotlib converters ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Pandas no longer registers our ``date``, ``time``, ``datetime``, @@ -1195,4 +1195,4 @@ Other Contributors ~~~~~~~~~~~~ -.. contributors:: v0.20.3..v0.21.0 +.. contributors:: v0.20.3..v0.21.0 \ No newline at end of file diff --git a/doc/source/whatsnew/v0.24.0.rst b/doc/source/whatsnew/v0.24.0.rst index 85de0150a5a28..7d8a788a352fb 100644 --- a/doc/source/whatsnew/v0.24.0.rst +++ b/doc/source/whatsnew/v0.24.0.rst @@ -733,7 +733,7 @@ is the case with :attr:`Period.end_time`, for example .. _whatsnew_0240.api_breaking.datetime_unique: -Series.unique for Timezone-Aware Data +Series.unique for timezone-aware data ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 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`) .. _whatsnew_0240.api.concat_categorical: -Concatenation Changes +Concatenation changes ^^^^^^^^^^^^^^^^^^^^^ Calling :func:`pandas.concat` on a ``Categorical`` of ints with NA values now @@ -1933,4 +1933,4 @@ Other Contributors ~~~~~~~~~~~~ -.. contributors:: v0.23.4..v0.24.0 +.. contributors:: v0.23.4..v0.24.0 \ No newline at end of file diff --git a/doc/source/whatsnew/v0.25.0.rst b/doc/source/whatsnew/v0.25.0.rst index b18d022349001..eb9cbc040206a 100644 --- a/doc/source/whatsnew/v0.25.0.rst +++ b/doc/source/whatsnew/v0.25.0.rst @@ -85,7 +85,7 @@ See :ref:`groupby.aggregate.named` for more. .. _whatsnew_0250.enhancements.multiple_lambdas: -Groupby Aggregation with multiple lambdas +Groupby aggregation with multiple lambdas ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ You can now provide multiple lambda functions to a list-like aggregation in @@ -1243,7 +1243,7 @@ Sparse - Bug in :func:`numpy.modf` on a :class:`SparseArray`. Now a tuple of :class:`SparseArray` is returned (:issue:`26946`). -Build Changes +Build changes ^^^^^^^^^^^^^ - Fix install error with PyPy on macOS (:issue:`26536`) @@ -1269,4 +1269,4 @@ Other Contributors ~~~~~~~~~~~~ -.. contributors:: v0.24.2..v0.25.0 +.. contributors:: v0.24.2..v0.25.0 \ No newline at end of file diff --git a/doc/source/whatsnew/v1.0.0.rst b/doc/source/whatsnew/v1.0.0.rst index 6597b764581a4..c8ef5215382e7 100755 --- a/doc/source/whatsnew/v1.0.0.rst +++ b/doc/source/whatsnew/v1.0.0.rst @@ -15,7 +15,7 @@ including other versions of pandas. 1.0. -New Deprecation Policy +New deprecation policy ~~~~~~~~~~~~~~~~~~~~~~ Starting with Pandas 1.0.0, pandas will adopt a variant of `SemVer`_ to @@ -61,7 +61,7 @@ the :ref:`custom window rolling documentation ` .. _whatsnew_100.to_markdown: -Converting to Markdown +Converting to markdown ^^^^^^^^^^^^^^^^^^^^^^ 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 See :ref:`install.dependencies` and :ref:`install.optional_dependencies` for more. -Build Changes +Build changes ^^^^^^^^^^^^^ Pandas has added a `pyproject.toml `_ file and will no longer include @@ -778,7 +778,7 @@ Other API changes .. _whatsnew_100.api.documentation: -Documentation Improvements +Documentation improvements ^^^^^^^^^^^^^^^^^^^^^^^^^^ - Added new section on :ref:`scale` (:issue:`28315`). @@ -1290,4 +1290,4 @@ Other Contributors ~~~~~~~~~~~~ -.. contributors:: v0.25.3..v1.0.0 +.. contributors:: v0.25.3..v1.0.0 \ No newline at end of file diff --git a/doc/source/whatsnew/v1.0.2.rst b/doc/source/whatsnew/v1.0.2.rst index 808e6ae709ce9..4bd1ac37ad006 100644 --- a/doc/source/whatsnew/v1.0.2.rst +++ b/doc/source/whatsnew/v1.0.2.rst @@ -28,7 +28,7 @@ Fixed regressions .. --------------------------------------------------------------------------- -Indexing with Nullable Boolean Arrays +Indexing with nullable boolean arrays ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Previously indexing with a nullable Boolean array containing ``NA`` would raise a ``ValueError``, however this is now permitted with ``NA`` being treated as ``False``. (:issue:`31503`) @@ -91,4 +91,4 @@ Bug fixes Contributors ~~~~~~~~~~~~ -.. contributors:: v1.0.1..v1.0.2|HEAD +.. contributors:: v1.0.1..v1.0.2|HEAD \ No newline at end of file From f1d008c549e65fab61818bfa7a160dd6f221910a Mon Sep 17 00:00:00 2001 From: themien Date: Thu, 19 Mar 2020 21:58:44 +0000 Subject: [PATCH 2/3] Capitalised proper name --- doc/source/getting_started/tutorials.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/source/getting_started/tutorials.rst b/doc/source/getting_started/tutorials.rst index 2512e59ae31d2..1cacfd4f8f4dd 100644 --- a/doc/source/getting_started/tutorials.rst +++ b/doc/source/getting_started/tutorials.rst @@ -30,7 +30,7 @@ entails. For the table of contents, see the `pandas-cookbook GitHub repository `_. -Learn pandas by hernan rojas +Learn pandas by Hernan Rojas ---------------------------- A set of lesson for new pandas users: https://bitbucket.org/hrojas/learn-pandas @@ -106,4 +106,4 @@ Various tutorials * `Intro to pandas data structures, by Greg Reda `_ * `Pandas and Python: Top 10, by Manish Amde `_ * `Pandas DataFrames Tutorial, by Karlijn Willems `_ -* `A concise tutorial with real life examples `_ \ No newline at end of file +* `A concise tutorial with real life examples `_ From 85fd86165a4392479d6ec1dc9cb6029d8020f6fd Mon Sep 17 00:00:00 2001 From: themien Date: Thu, 19 Mar 2020 22:00:39 +0000 Subject: [PATCH 3/3] Update frame.rst --- doc/source/reference/frame.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/source/reference/frame.rst b/doc/source/reference/frame.rst index 3b0ef3231fcfe..b326bbb5a465e 100644 --- a/doc/source/reference/frame.rst +++ b/doc/source/reference/frame.rst @@ -251,7 +251,7 @@ Combining / joining / merging DataFrame.merge DataFrame.update -Time Series-related +Time series-related ~~~~~~~~~~~~~~~~~~~ .. autosummary:: :toctree: api/ @@ -366,4 +366,4 @@ Serialization / IO / conversion DataFrame.to_string DataFrame.to_clipboard DataFrame.to_markdown - DataFrame.style \ No newline at end of file + DataFrame.style