You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/source/getting_started/install.rst
+2-2
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ cross platform distribution for data analysis and scientific computing.
12
12
This is the recommended installation method for most users.
13
13
14
14
Instructions for installing from source,
15
-
`PyPI <https://pypi.org/project/pandas>`__, `ActivePython <https://www.activestate.com/activepython/downloads>`__, various Linux distributions, or a
15
+
`PyPI <https://pypi.org/project/pandas>`__, `ActivePython <https://www.activestate.com/products/python/downloads/>`__, various Linux distributions, or a
16
16
`development version <https://github.com/pandas-dev/pandas>`__ are also provided.
17
17
18
18
.. _install.version:
@@ -47,7 +47,7 @@ rest of the `SciPy <https://scipy.org/>`__ stack without needing to install
47
47
anything else, and without needing to wait for any software to be compiled.
48
48
49
49
Installation instructions for `Anaconda <https://docs.continuum.io/anaconda/>`__
50
-
`can be found here <https://docs.continuum.io/anaconda/install.html>`__.
50
+
`can be found here <https://docs.continuum.io/anaconda/install/>`__.
51
51
52
52
A full list of the packages available as part of the
53
53
`Anaconda <https://docs.continuum.io/anaconda/>`__ distribution
Copy file name to clipboardExpand all lines: doc/source/whatsnew/v1.3.2.rst
+4
Original file line number
Diff line number
Diff line change
@@ -32,7 +32,11 @@ Bug fixes
32
32
~~~~~~~~~
33
33
- Bug in :meth:`pandas.read_excel` modifies the dtypes dictionary when reading a file with duplicate columns (:issue:`42462`)
34
34
- 1D slices over extension types turn into N-dimensional slices over ExtensionArrays (:issue:`42430`)
35
+
- Fixed bug in :meth:`Series.rolling` and :meth:`DataFrame.rolling` not calculating window bounds correctly for the first row when ``center=True`` and ``window`` is an offset that covers all the rows (:issue:`42753`)
35
36
- :meth:`.Styler.hide_columns` now hides the index name header row as well as column headers (:issue:`42101`)
37
+
- :meth:`.Styler.set_sticky` has amended CSS to control the column/index names and ensure the correct sticky positions (:issue:`42537`)
38
+
- Bug in de-serializing datetime indexes in PYTHONOPTIMIZED mode (:issue:`42866`)
Copy file name to clipboardExpand all lines: doc/source/whatsnew/v1.4.0.rst
+4
Original file line number
Diff line number
Diff line change
@@ -34,6 +34,7 @@ Other enhancements
34
34
- :meth:`Series.sample`, :meth:`DataFrame.sample`, and :meth:`.GroupBy.sample` now accept a ``np.random.Generator`` as input to ``random_state``. A generator will be more performant, especially with ``replace=False`` (:issue:`38100`)
35
35
- Additional options added to :meth:`.Styler.bar` to control alignment and display, with keyword only arguments (:issue:`26070`, :issue:`36419`)
36
36
- :meth:`Styler.bar` now validates the input argument ``width`` and ``height`` (:issue:`42511`)
37
+
- Add keyword ``levels`` to :meth:`.Styler.hide_index` for optionally controlling hidden levels in a MultiIndex (:issue:`25475`)
37
38
- :meth:`Series.ewm`, :meth:`DataFrame.ewm`, now support a ``method`` argument with a ``'table'`` option that performs the windowing operation over an entire :class:`DataFrame`. See :ref:`Window Overview <window.overview>` for performance and functional benefits (:issue:`42273`)
38
39
- Added ``sparse_index`` and ``sparse_columns`` keyword arguments to :meth:`.Styler.to_html` (:issue:`41946`)
39
40
- Added keyword argument ``environment`` to :meth:`.Styler.to_latex` also allowing a specific "longtable" entry with a separate jinja2 template (:issue:`41866`)
@@ -236,6 +237,7 @@ Indexing
236
237
- Bug in indexing on a :class:`MultiIndex` failing to drop scalar levels when the indexer is a tuple containing a datetime-like string (:issue:`42476`)
237
238
- Bug in :meth:`DataFrame.sort_values` and :meth:`Series.sort_values` when passing an ascending value, failed to raise or incorrectly raising ``ValueError`` (:issue:`41634`)
238
239
- Bug in updating values of :class:`pandas.Series` using boolean index, created by using :meth:`pandas.DataFrame.pop` (:issue:`42530`)
240
+
- Bug in :meth:`Index.get_indexer_non_unique` when index contains multiple ``np.nan`` (:issue:`35392`)
239
241
- Bug in :meth:`DataFrame.query` did not handle the degree sign in a backticked column name, such as \`Temp(°C)\`, used in an expression to query a dataframe (:issue:`42826`)
240
242
-
241
243
@@ -274,7 +276,9 @@ Groupby/resample/rolling
274
276
- Bug in :meth:`Series.rolling.apply`, :meth:`DataFrame.rolling.apply`, :meth:`Series.expanding.apply` and :meth:`DataFrame.expanding.apply` with ``engine="numba"`` where ``*args`` were being cached with the user passed function (:issue:`42287`)
275
277
- Bug in :meth:`DataFrame.groupby.rolling.var` would calculate the rolling variance only on the first group (:issue:`42442`)
276
278
- Bug in :meth:`GroupBy.shift` that would return the grouping columns if ``fill_value`` was not None (:issue:`41556`)
279
+
- Bug in :meth:`SeriesGroupBy.nlargest` and :meth:`SeriesGroupBy.nsmallest` would have an inconsistent index when the input Series was sorted and ``n`` was greater than or equal to all group sizes (:issue:`15272`, :issue:`16345`, :issue:`29129`)
277
280
- Bug in :meth:`pandas.DataFrame.ewm`, where non-float64 dtypes were silently failing (:issue:`42452`)
281
+
- Bug in :meth:`pandas.DataFrame.rolling` operation along rows (``axis=1``) incorrectly omits columns containing ``float16`` and ``float32`` (:issue:`41779`)
0 commit comments