Skip to content

Commit 0d51bed

Browse files
author
luzpaz
committed
Misc. Typo fixes
Both user and non-user facing. Found via `codespell -q 3 -I ../pandas-whitelist.txt` whereby the whitelist consisted of: ``` behaviour indicies initialise initialised initialising resetted thru writeable ```
1 parent e567949 commit 0d51bed

File tree

158 files changed

+308
-308
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

158 files changed

+308
-308
lines changed

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ matrix:
1111
environment:
1212
global:
1313
# SDK v7.0 MSVC Express 2008's SetEnv.cmd script will fail if the
14-
# /E:ON and /V:ON options are not enabled in the batch script intepreter
14+
# /E:ON and /V:ON options are not enabled in the batch script interpreter
1515
# See: http://stackoverflow.com/a/13751649/163740
1616
CMD_IN_ENV: "cmd /E:ON /V:ON /C .\\ci\\run_with_env.cmd"
1717
clone_folder: C:\projects\pandas

asv_bench/benchmarks/frame_ctor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
try:
55
from pandas.tseries.offsets import Nano, Hour
66
except ImportError:
7-
# For compatability with older versions
7+
# For compatibility with older versions
88
from pandas.core.datetools import * # noqa
99

1010
from .pandas_vb_common import setup # noqa

asv_bench/benchmarks/pandas_vb_common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def remove(self, f):
4343
def teardown(self, *args, **kwargs):
4444
self.remove(self.fname)
4545

46-
# Compatability import for lib
46+
# Compatibility import for lib
4747
for imp in ['pandas._libs.lib', 'pandas.lib', 'pandas_tseries']:
4848
try:
4949
lib = import_module(imp)

doc/source/_static/banklist.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<meta charset="UTF-8">
88
<!-- Unicode character encoding -->
99
<meta http-equiv="X-UA-Compatible" content="IE=edge">
10-
<!-- Turns off IE Compatiblity Mode -->
10+
<!-- Turns off IE Compatibility Mode -->
1111
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
1212
<!-- Makes it so phones don't auto zoom out. -->
1313
<meta name="author" content="DRR">
@@ -4849,7 +4849,7 @@ <h1 class="page_title">Failed Bank List</h1>
48494849
<ul>
48504850
<li><a href="/about/freedom/" title="Freedom of Information Act (FOIA) Service Center">Freedom of Information Act (FOIA) Service Center</a></li>
48514851
<li><a href="/open/" title="FDIC Open Government Webpage">FDIC Open Government Webpage</a></li>
4852-
<li><a href="/about/diversity/nofear/" title="No FEAR Act Data">No FEAR Act Data</a></li>
4852+
<li><a href="/about/diversity/nofear/" title="No FEAR Act Data">No FEAR Act Data</a></li>
48534853
</ul>
48544854
</div>
48554855
<div id="responsive_footer-small">

doc/source/api.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ methods. In general, all classes and functions exposed in the top-level
1010
``pandas.*`` namespace are regarded as public.
1111

1212
Further some of the subpackages are public, including ``pandas.errors``,
13-
``pandas.plotting``, and ``pandas.testing``. Certain functions in the the
13+
``pandas.plotting``, and ``pandas.testing``. Certain functions in the
1414
``pandas.io`` and ``pandas.tseries`` submodules are public as well (those
1515
mentioned in the documentation). Further, the ``pandas.api.types`` subpackage
1616
holds some public functions related to data types in pandas.

doc/source/basics.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -946,7 +946,7 @@ Mixed Dtypes
946946
++++++++++++
947947

948948
When presented with mixed dtypes that cannot aggregate, ``.agg`` will only take the valid
949-
aggregations. This is similiar to how groupby ``.agg`` works.
949+
aggregations. This is similar to how groupby ``.agg`` works.
950950

951951
.. ipython:: python
952952

doc/source/computation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ These are created from methods on ``Series`` and ``DataFrame``.
237237
r = s.rolling(window=60)
238238
r
239239
240-
These object provide tab-completion of the avaible methods and properties.
240+
These object provide tab-completion of the available methods and properties.
241241

242242
.. code-block:: ipython
243243

doc/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -380,7 +380,7 @@
380380
'import pandas as pd',
381381
# This ensures correct rendering on system with console encoding != utf8
382382
# (windows). It forces pandas to encode its output reprs using utf8
383-
# whereever the docs are built. The docs' target is the browser, not
383+
# wherever the docs are built. The docs' target is the browser, not
384384
# the console, so this is fine.
385385
'pd.options.display.encoding="utf8"'
386386
]

doc/source/contributing.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -124,16 +124,16 @@ to build the documentation locally before pushing your changes.
124124

125125
.. _contributiong.dev_c:
126126

127-
Installing a C Complier
127+
Installing a C Compiler
128128
~~~~~~~~~~~~~~~~~~~~~~~
129129

130130
Pandas uses C extensions (mostly written using Cython) to speed up certain
131131
operations. To install pandas from source, you need to compile these C
132-
extensions, which means you need a C complier. This process depends on which
132+
extensions, which means you need a C compiler. This process depends on which
133133
platform you're using. Follow the `CPython contributing guidelines
134134
<https://docs.python.org/devguide/setup.html#build-dependencies>`_ for getting a
135-
complier installed. You don't need to do any of the ``./configure`` or ``make``
136-
steps; you only need to install the complier.
135+
compiler installed. You don't need to do any of the ``./configure`` or ``make``
136+
steps; you only need to install the compiler.
137137

138138
For Windows developers, the following links may be helpful.
139139

@@ -151,7 +151,7 @@ Let us know if you have any difficulties by opening an issue or reaching out on
151151
Creating a Python Environment
152152
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
153153

154-
Now that you have a C complier, create an isolated pandas development
154+
Now that you have a C compiler, create an isolated pandas development
155155
environment:
156156

157157
- Install either `Anaconda <https://www.anaconda.com/download/>`_ or `miniconda

doc/source/developer.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ where ``KeyValue`` is
4040
}
4141
4242
So that a ``pandas.DataFrame`` can be faithfully reconstructed, we store a
43-
``pandas`` metadata key in the ``FileMetaData`` with the the value stored as :
43+
``pandas`` metadata key in the ``FileMetaData`` with the value stored as :
4444

4545
.. code-block:: text
4646

doc/source/dsintro.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -470,7 +470,7 @@ derived from existing columns.
470470
.head())
471471
472472
In the example above, we inserted a precomputed value. We can also pass in
473-
a function of one argument to be evalutated on the DataFrame being assigned to.
473+
a function of one argument to be evaluated on the DataFrame being assigned to.
474474

475475
.. ipython:: python
476476
@@ -957,7 +957,7 @@ pandas to focus on these areas exclusively.
957957

958958
Oftentimes, one can simply use a MultiIndex ``DataFrame`` for easily working with higher dimensional data.
959959

960-
In additon, the ``xarray`` package was built from the ground up, specifically in order to
960+
In addition, the ``xarray`` package was built from the ground up, specifically in order to
961961
support the multi-dimensional analysis that is one of ``Panel`` s main usecases.
962962
`Here is a link to the xarray panel-transition documentation <http://xarray.pydata.org/en/stable/pandas.html#panel-transition>`__.
963963

doc/source/enhancingperf.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ Using ndarray
173173

174174
It's calling series... a lot! It's creating a Series from each row, and get-ting from both
175175
the index and the series (three times for each row). Function calls are expensive
176-
in python, so maybe we could minimise these by cythonizing the apply part.
176+
in python, so maybe we could minimize these by cythonizing the apply part.
177177

178178
.. note::
179179

@@ -578,7 +578,7 @@ on the original ``DataFrame`` or return a copy with the new column.
578578

579579
.. warning::
580580

581-
For backwards compatability, ``inplace`` defaults to ``True`` if not
581+
For backwards compatibility, ``inplace`` defaults to ``True`` if not
582582
specified. This will change in a future version of pandas - if your
583583
code depends on an inplace assignment you should update to explicitly
584584
set ``inplace=True``

doc/source/indexing.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -653,7 +653,7 @@ Indexing with list with missing labels is Deprecated
653653

654654
In prior versions, using ``.loc[list-of-labels]`` would work as long as *at least 1* of the keys was found (otherwise it
655655
would raise a ``KeyError``). This behavior is deprecated and will show a warning message pointing to this section. The
656-
recommeded alternative is to use ``.reindex()``.
656+
recommended alternative is to use ``.reindex()``.
657657

658658
For example.
659659

@@ -726,7 +726,7 @@ Having a duplicated index will raise for a ``.reindex()``:
726726
In [17]: s.reindex(labels)
727727
ValueError: cannot reindex from a duplicate axis
728728
729-
Generally, you can interesect the desired labels with the current
729+
Generally, you can intersect the desired labels with the current
730730
axis, and then reindex.
731731

732732
.. ipython:: python

doc/source/install.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ To install pandas for Python 2 you may need to use the package ``python-pandas``
152152
Debian, stable, `official Debian repository <http://packages.debian.org/search?keywords=pandas&searchon=names&suite=all&section=all>`__ , ``sudo apt-get install python3-pandas``
153153
Debian & Ubuntu, unstable (latest packages), `NeuroDebian <http://neuro.debian.net/index.html#how-to-use-this-repository>`__ , ``sudo apt-get install python3-pandas``
154154
Ubuntu, stable, `official Ubuntu repository <http://packages.ubuntu.com/search?keywords=pandas&searchon=names&suite=all&section=all>`__ , ``sudo apt-get install python3-pandas``
155-
OpenSuse, stable, `OpenSuse Repository <http://software.opensuse.org/package/python-pandas?search_term=pandas>`__ , ``zypper in python3-pandas``
155+
OpenSuse, stable, `OpenSuse Repository <http://software.opensuse.org/package/python-pandas?search_term=pandas>`__ , ``zypper in python3-pandas``
156156
Fedora, stable, `official Fedora repository <https://admin.fedoraproject.org/pkgdb/package/rpms/python-pandas/>`__ , ``dnf install python3-pandas``
157157
Centos/RHEL, stable, `EPEL repository <https://admin.fedoraproject.org/pkgdb/package/rpms/python-pandas/>`__ , ``yum install python3-pandas``
158158

doc/source/io.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1048,7 +1048,7 @@ The ``thousands`` keyword allows integers to be parsed correctly
10481048
NA Values
10491049
'''''''''
10501050

1051-
To control which values are parsed as missing values (which are signified by ``NaN``), specifiy a
1051+
To control which values are parsed as missing values (which are signified by ``NaN``), specify a
10521052
string in ``na_values``. If you specify a list of strings, then all values in
10531053
it are considered to be missing values. If you specify a number (a ``float``, like ``5.0`` or an ``integer`` like ``5``),
10541054
the corresponding equivalent values will also imply a missing value (in this case effectively
@@ -4153,7 +4153,7 @@ Caveats
41534153

41544154
.. warning::
41554155

4156-
``PyTables`` will show a ``NaturalNameWarning`` if a column name
4156+
``PyTables`` will show a ``NaturalNameWarning`` if a column name
41574157
cannot be used as an attribute selector.
41584158
*Natural* identifiers contain only letters, numbers, and underscores,
41594159
and may not begin with a number.
@@ -4478,7 +4478,7 @@ Several caveats.
44784478
- Non supported types include ``Period`` and actual python object types. These will raise a helpful error message
44794479
on an attempt at serialization.
44804480

4481-
You can specifiy an ``engine`` to direct the serialization. This can be one of ``pyarrow``, or ``fastparquet``, or ``auto``.
4481+
You can specify an ``engine`` to direct the serialization. This can be one of ``pyarrow``, or ``fastparquet``, or ``auto``.
44824482
If the engine is NOT specified, then the ``pd.options.io.parquet.engine`` option is checked; if this is also ``auto``, then
44834483
then ``pyarrow`` is tried, and falling back to ``fastparquet``.
44844484

doc/source/options.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ lines are replaced by an ellipsis.
163163
df
164164
pd.reset_option('max_rows')
165165
166-
``display.expand_frame_repr`` allows for the the representation of
166+
``display.expand_frame_repr`` allows for the representation of
167167
dataframes to stretch across pages, wrapped over the full column vs row-wise.
168168

169169
.. ipython:: python

doc/source/overview.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ Wes McKinney is the Benevolent Dictator for Life (BDFL).
109109
Development Team
110110
-----------------
111111

112-
The list of the Core Team members and more detailed information can be found on the `people’s page <https://github.com/pandas-dev/pandas-governance/blob/master/people.md>`__ of the governance repo.
112+
The list of the Core Team members and more detailed information can be found on the `people’s page <https://github.com/pandas-dev/pandas-governance/blob/master/people.md>`__ of the governance repo.
113113

114114

115115
Institutional Partners

doc/source/release.rst

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2022,7 +2022,7 @@ Bug Fixes
20222022
- Fixed missing arg validation in get_options_data (:issue:`6105`)
20232023
- Bug in assignment with duplicate columns in a frame where the locations
20242024
are a slice (e.g. next to each other) (:issue:`6120`)
2025-
- Bug in propogating _ref_locs during construction of a DataFrame with dups
2025+
- Bug in propagating _ref_locs during construction of a DataFrame with dups
20262026
index/columns (:issue:`6121`)
20272027
- Bug in ``DataFrame.apply`` when using mixed datelike reductions (:issue:`6125`)
20282028
- Bug in ``DataFrame.append`` when appending a row with different columns (:issue:`6129`)
@@ -2035,7 +2035,7 @@ Bug Fixes
20352035
- Bug in ``HDFStore`` on appending a dataframe with multi-indexed columns to
20362036
an existing table (:issue:`6167`)
20372037
- Consistency with dtypes in setting an empty DataFrame (:issue:`6171`)
2038-
- Bug in selecting on a multi-index ``HDFStore`` even in the presence of under
2038+
- Bug in selecting on a multi-index ``HDFStore`` even in the presence of under
20392039
specified column spec (:issue:`6169`)
20402040
- Bug in ``nanops.var`` with ``ddof=1`` and 1 elements would sometimes return ``inf``
20412041
rather than ``nan`` on some platforms (:issue:`6136`)
@@ -2416,7 +2416,7 @@ API Changes
24162416
- The refactoring involving``Series`` deriving from ``NDFrame`` breaks ``rpy2<=2.3.8``. an Issue
24172417
has been opened against rpy2 and a workaround is detailed in :issue:`5698`. Thanks @JanSchulz.
24182418
- ``Series.argmin`` and ``Series.argmax`` are now aliased to ``Series.idxmin`` and ``Series.idxmax``.
2419-
These return the *index* of the min or max element respectively. Prior to 0.13.0 these would return
2419+
These return the *index* of the min or max element respectively. Prior to 0.13.0 these would return
24202420
the position of the min / max element (:issue:`6214`)
24212421

24222422
Internal Refactoring
@@ -3076,7 +3076,7 @@ Bug Fixes
30763076
- Fixed bug where a time-series was being selected in preference to an actual column name
30773077
in a frame (:issue:`3594`)
30783078
- Make secondary_y work properly for bar plots (:issue:`3598`)
3079-
- Fix modulo and integer division on Series,DataFrames to act similary to ``float`` dtypes to return
3079+
- Fix modulo and integer division on Series,DataFrames to act similarly to ``float`` dtypes to return
30803080
``np.nan`` or ``np.inf`` as appropriate (:issue:`3590`)
30813081
- Fix incorrect dtype on groupby with ``as_index=False`` (:issue:`3610`)
30823082
- Fix ``read_csv/read_excel`` to correctly encode identical na_values, e.g. ``na_values=[-999.0,-999]``
@@ -3379,11 +3379,11 @@ Bug Fixes
33793379
- Fixed bug in reshape if not passed correct input, now raises TypeError (:issue:`2719`)
33803380
- Fixed a bug where Series ctor did not respect ordering if OrderedDict passed in (:issue:`3282`)
33813381
- Fix NameError issue on RESO_US (:issue:`2787`)
3382-
- Allow selection in an *unordered* timeseries to work similary
3382+
- Allow selection in an *unordered* timeseries to work similarly
33833383
to an *ordered* timeseries (:issue:`2437`).
33843384
- Fix implemented ``.xs`` when called with ``axes=1`` and a level parameter (:issue:`2903`)
33853385
- Timestamp now supports the class method fromordinal similar to datetimes (:issue:`3042`)
3386-
- Fix issue with indexing a series with a boolean key and specifiying a 1-len list on the rhs (:issue:`2745`)
3386+
- Fix issue with indexing a series with a boolean key and specifying a 1-len list on the rhs (:issue:`2745`)
33873387
or a list on the rhs (:issue:`3235`)
33883388
- Fixed bug in groupby apply when kernel generate list of arrays having unequal len (:issue:`1738`)
33893389
- fixed handling of rolling_corr with center=True which could produce corr>1 (:issue:`3155`)
@@ -3534,7 +3534,7 @@ Bug Fixes
35343534
- Upconvert datetime + datetime64 values when concatenating frames (:issue:`2624`)
35353535
- Raise a more helpful error message in merge operations when one DataFrame
35363536
has duplicate columns (:issue:`2649`)
3537-
- Fix partial date parsing issue occuring only when code is run at EOM
3537+
- Fix partial date parsing issue occurring only when code is run at EOM
35383538
(:issue:`2618`)
35393539
- Prevent MemoryError when using counting sort in sortlevel with
35403540
high-cardinality MultiIndex objects (:issue:`2684`)
@@ -3952,7 +3952,7 @@ Bug Fixes
39523952
- Don't lose tzinfo when passing DatetimeIndex as DataFrame column (:issue:`1682`)
39533953
- Fix tz conversion with time zones that haven't had any DST transitions since
39543954
first date in the array (:issue:`1673`)
3955-
- Fix field access with UTC->local conversion on unsorted arrays (:issue:`1756`)
3955+
- Fix field access with UTC->local conversion on unsorted arrays (:issue:`1756`)
39563956
- Fix isnull handling of array-like (list) inputs (:issue:`1755`)
39573957
- Fix regression in handling of Series in Series constructor (:issue:`1671`)
39583958
- Fix comparison of Int64Index with DatetimeIndex (:issue:`1681`)
@@ -4504,7 +4504,7 @@ Bug Fixes
45044504
- Fix na-filling handling in mixed-type DataFrame (:issue:`910`)
45054505
- Fix to DataFrame.set_value with non-existant row/col (:issue:`911`)
45064506
- Fix malformed block in groupby when excluding nuisance columns (:issue:`916`)
4507-
- Fix inconsistant NA handling in dtype=object arrays (:issue:`925`)
4507+
- Fix inconsistent NA handling in dtype=object arrays (:issue:`925`)
45084508
- Fix missing center-of-mass computation in ewmcov (:issue:`862`)
45094509
- Don't raise exception when opening read-only HDF5 file (:issue:`847`)
45104510
- Fix possible out-of-bounds memory access in 0-length Series (:issue:`917`)

doc/source/style.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@
318318
"Both `Styler.apply`, and `Styler.applymap` accept a `subset` keyword.\n",
319319
"This allows you to apply styles to specific rows or columns, without having to code that logic into your `style` function.\n",
320320
"\n",
321-
"The value passed to `subset` behaves simlar to slicing a DataFrame.\n",
321+
"The value passed to `subset` behaves similar to slicing a DataFrame.\n",
322322
"\n",
323323
"- A scalar is treated as a column label\n",
324324
"- A list (or series or numpy array)\n",

doc/source/timeseries.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1580,7 +1580,7 @@ We can instead only resample those groups where we have points as follows:
15801580
Aggregation
15811581
~~~~~~~~~~~
15821582

1583-
Similar to the :ref:`aggregating API <basics.aggregate>`, :ref:`groupby API <groupby.aggregate>`, and the :ref:`window functions API <stats.aggregate>`,
1583+
Similar to the :ref:`aggregating API <basics.aggregate>`, :ref:`groupby API <groupby.aggregate>`, and the :ref:`window functions API <stats.aggregate>`,
15841584
a ``Resampler`` can be selectively resampled.
15851585

15861586
Resampling a ``DataFrame``, the default will be to act on all columns with the same function.
@@ -2108,7 +2108,7 @@ tz-aware data to another time zone:
21082108

21092109
It is incorrect to pass a timezone directly into the ``datetime.datetime`` constructor (e.g.,
21102110
``datetime.datetime(2011, 1, 1, tz=timezone('US/Eastern'))``. Instead, the datetime
2111-
needs to be localized using the the localize method on the timezone.
2111+
needs to be localized using the localize method on the timezone.
21122112

21132113
Under the hood, all timestamps are stored in UTC. Scalar values from a
21142114
``DatetimeIndex`` with a time zone will have their fields (day, hour, minute)

doc/source/visualization.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ You can also create these other plots using the methods ``DataFrame.plot.<kind>`
140140
df.plot.area df.plot.barh df.plot.density df.plot.hist df.plot.line df.plot.scatter
141141
df.plot.bar df.plot.box df.plot.hexbin df.plot.kde df.plot.pie
142142

143-
In addition to these ``kind`` s, there are the :ref:`DataFrame.hist() <visualization.hist>`,
143+
In addition to these ``kind`` s, there are the :ref:`DataFrame.hist() <visualization.hist>`,
144144
and :ref:`DataFrame.boxplot() <visualization.box>` methods, which use a separate interface.
145145

146146
Finally, there are several :ref:`plotting functions <visualization.tools>` in ``pandas.plotting``
@@ -716,7 +716,7 @@ You can use the ``labels`` and ``colors`` keywords to specify the labels and col
716716

717717
.. warning::
718718

719-
Most pandas plots use the the ``label`` and ``color`` arguments (note the lack of "s" on those).
719+
Most pandas plots use the ``label`` and ``color`` arguments (note the lack of "s" on those).
720720
To be consistent with :func:`matplotlib.pyplot.pie` you must use ``labels`` and ``colors``.
721721

722722
If you want to hide wedge labels, specify ``labels=None``.
@@ -1187,7 +1187,7 @@ time-series data. For limited cases where pandas cannot infer the frequency
11871187
information (e.g., in an externally created ``twinx``), you can choose to
11881188
suppress this behavior for alignment purposes.
11891189

1190-
Here is the default behavior, notice how the x-axis tick labelling is performed:
1190+
Here is the default behavior, notice how the x-axis tick labeling is performed:
11911191

11921192
.. ipython:: python
11931193

doc/source/whatsnew/v0.10.0.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ Updated PyTables Support
369369
df1
370370
df1.get_dtype_counts()
371371

372-
- performance improvments on table writing
372+
- performance improvements on table writing
373373
- support for arbitrarily indexed dimensions
374374
- ``SparseSeries`` now has a ``density`` property (:issue:`2384`)
375375
- enable ``Series.str.strip/lstrip/rstrip`` methods to take an input argument

0 commit comments

Comments
 (0)