From 5348eb6bc603805b28b54332be390a943a0dfc08 Mon Sep 17 00:00:00 2001 From: root Date: Wed, 6 Aug 2025 13:02:38 +0000 Subject: [PATCH 1/3] DOC: add 'try pandas online' button in the 'getting started' page --- doc/source/getting_started/index.rst | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/doc/source/getting_started/index.rst b/doc/source/getting_started/index.rst index a17699a71fbd3..f85db7c00f541 100644 --- a/doc/source/getting_started/index.rst +++ b/doc/source/getting_started/index.rst @@ -531,6 +531,27 @@ Data sets often contain more than just numerical data. pandas provides a wide ra +.. grid:: 1 2 2 2 + :gutter: 4 + + .. grid-item-card:: Pandas Playground + :class-card: install-card + :columns: 12 + :padding: 3 + + Try out pandas in your browser using an interactive environment, no installation needed. + + +++ + + .. button-link:: https://pandas.pydata.org/try.html + :ref-type: ref + :click-parent: + :color: secondary + :expand: + + Try Pandas Online + + .. _comingfrom: From e257c03637d2f8276eee5285d580d33dbda93cfa Mon Sep 17 00:00:00 2001 From: root Date: Wed, 6 Aug 2025 13:17:36 +0000 Subject: [PATCH 2/3] DOC: highlight the changes in the whatsnew section --- doc/source/whatsnew/v2.3.2.rst | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/doc/source/whatsnew/v2.3.2.rst b/doc/source/whatsnew/v2.3.2.rst index 53a8d28687518..3acdb511399c1 100644 --- a/doc/source/whatsnew/v2.3.2.rst +++ b/doc/source/whatsnew/v2.3.2.rst @@ -27,6 +27,12 @@ Bug fixes (:issue:`61889`) - Boolean operations (``|``, ``&``, ``^``) with bool-dtype objects on the left and :class:`StringDtype` objects on the right now cast the string to bool, with a deprecation warning (:issue:`60234`) + +Other Improvements +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +- Added a "Try Pandas Online" section to the getting started page of the docs (:issue:`61010`) + .. --------------------------------------------------------------------------- .. _whatsnew_232.contributors: From 38c322cd115e117eabdd5fdcd35e9320ad895254 Mon Sep 17 00:00:00 2001 From: root Date: Wed, 6 Aug 2025 13:27:55 +0000 Subject: [PATCH 3/3] DOC: fix the issue number in the whatsnew section --- doc/source/whatsnew/v2.3.2.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/source/whatsnew/v2.3.2.rst b/doc/source/whatsnew/v2.3.2.rst index 3acdb511399c1..843a54042ba60 100644 --- a/doc/source/whatsnew/v2.3.2.rst +++ b/doc/source/whatsnew/v2.3.2.rst @@ -29,9 +29,9 @@ Bug fixes Other Improvements -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~~~~~~~~~~~~~~~~~ -- Added a "Try Pandas Online" section to the getting started page of the docs (:issue:`61010`) +- Added a "Try Pandas Online" section to the getting started page of the docs (:issue:`61060`) .. --------------------------------------------------------------------------- .. _whatsnew_232.contributors: