From 37622015eaddd2a321cfd0218d4adf2d850e72ed Mon Sep 17 00:00:00 2001 From: Gordon Chen Date: Wed, 27 May 2020 10:29:45 -0500 Subject: [PATCH 1/5] add link to benchmarks page in README.md --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 7edee8d3feeed..a117c738d5957 100644 --- a/README.md +++ b/README.md @@ -138,6 +138,9 @@ python setup.py develop See the full instructions for [installing from source](https://pandas.pydata.org/pandas-docs/stable/install.html#installing-from-source). +## Benchmarks +[Benchmarks from airspeed velocity](https://pandas.pydata.org/speed/pandas/#/) + ## License [BSD 3](LICENSE) From ac543e4d60885f3c908cc396ec383fb734d1f537 Mon Sep 17 00:00:00 2001 From: Gordon Chen Date: Wed, 27 May 2020 10:55:55 -0500 Subject: [PATCH 2/5] add link to benchmarks page in overview.rst --- doc/source/getting_started/overview.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/getting_started/overview.rst b/doc/source/getting_started/overview.rst index d8a40c5406dee..a4ffafb0850f1 100644 --- a/doc/source/getting_started/overview.rst +++ b/doc/source/getting_started/overview.rst @@ -6,7 +6,7 @@ Package overview **************** -**pandas** is a `Python `__ package providing fast, +**pandas** is a `Python `__ package providing fast (`benchmarks `__), flexible, and expressive data structures designed to make working with "relational" or "labeled" data both easy and intuitive. It aims to be the fundamental high-level building block for doing practical, **real world** data From 443d063a07714d57fcdd9bd6832d7a0dabf033ee Mon Sep 17 00:00:00 2001 From: Gordon Chen Date: Wed, 27 May 2020 13:31:57 -0500 Subject: [PATCH 3/5] move the link to benchmarks page to contributing.rst --- doc/source/development/contributing.rst | 5 +++-- doc/source/getting_started/overview.rst | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/doc/source/development/contributing.rst b/doc/source/development/contributing.rst index d02896f777348..c6e56fd4984cf 100644 --- a/doc/source/development/contributing.rst +++ b/doc/source/development/contributing.rst @@ -1275,8 +1275,9 @@ Performance matters and it is worth considering whether your code has introduced performance regressions. pandas is in the process of migrating to `asv benchmarks `__ to enable easy monitoring of the performance of critical pandas operations. -These benchmarks are all found in the ``pandas/asv_bench`` directory. asv -supports both python2 and python3. +These benchmarks are all found in the ``pandas/asv_bench`` directory, and the +test results can be found `here `__. +asv supports both python2 and python3. To use all features of asv, you will need either ``conda`` or ``virtualenv``. For more details please check the `asv installation diff --git a/doc/source/getting_started/overview.rst b/doc/source/getting_started/overview.rst index a4ffafb0850f1..d8a40c5406dee 100644 --- a/doc/source/getting_started/overview.rst +++ b/doc/source/getting_started/overview.rst @@ -6,7 +6,7 @@ Package overview **************** -**pandas** is a `Python `__ package providing fast (`benchmarks `__), +**pandas** is a `Python `__ package providing fast, flexible, and expressive data structures designed to make working with "relational" or "labeled" data both easy and intuitive. It aims to be the fundamental high-level building block for doing practical, **real world** data From 15b9c75b80aa1359d1aef33d1d533dbeaf7a7b5e Mon Sep 17 00:00:00 2001 From: Gordon Chen Date: Wed, 27 May 2020 15:36:53 -0500 Subject: [PATCH 4/5] Update doc/source/development/contributing.rst Co-authored-by: Joris Van den Bossche --- doc/source/development/contributing.rst | 1 - 1 file changed, 1 deletion(-) diff --git a/doc/source/development/contributing.rst b/doc/source/development/contributing.rst index c6e56fd4984cf..457aabcff0c17 100644 --- a/doc/source/development/contributing.rst +++ b/doc/source/development/contributing.rst @@ -1277,7 +1277,6 @@ performance regressions. pandas is in the process of migrating to to enable easy monitoring of the performance of critical pandas operations. These benchmarks are all found in the ``pandas/asv_bench`` directory, and the test results can be found `here `__. -asv supports both python2 and python3. To use all features of asv, you will need either ``conda`` or ``virtualenv``. For more details please check the `asv installation From 1c9f6bbd2dcf84bd68e0426ef70c2dc8e6a778a7 Mon Sep 17 00:00:00 2001 From: Gordon Chen Date: Wed, 27 May 2020 15:39:57 -0500 Subject: [PATCH 5/5] Update README.md remove the benchmark section --- README.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/README.md b/README.md index a117c738d5957..7edee8d3feeed 100644 --- a/README.md +++ b/README.md @@ -138,9 +138,6 @@ python setup.py develop See the full instructions for [installing from source](https://pandas.pydata.org/pandas-docs/stable/install.html#installing-from-source). -## Benchmarks -[Benchmarks from airspeed velocity](https://pandas.pydata.org/speed/pandas/#/) - ## License [BSD 3](LICENSE)