From c1450ec30332b2048f3af7e915af654c6cd76d67 Mon Sep 17 00:00:00 2001 From: Matt Braymer-Hayes Date: Wed, 24 Jul 2024 10:02:55 -0400 Subject: [PATCH] pyarrow.rst: Add missing IO readers Add read_parquet and read_table (experimental) to the list of IO readers that support the PyArrow engine. --- doc/source/user_guide/pyarrow.rst | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/doc/source/user_guide/pyarrow.rst b/doc/source/user_guide/pyarrow.rst index 61b383afb7c43..aecbce0441b53 100644 --- a/doc/source/user_guide/pyarrow.rst +++ b/doc/source/user_guide/pyarrow.rst @@ -159,9 +159,11 @@ PyArrow also provides IO reading functionality that has been integrated into sev functions provide an ``engine`` keyword that can dispatch to PyArrow to accelerate reading from an IO source. * :func:`read_csv` +* :func:`read_feather` * :func:`read_json` * :func:`read_orc` -* :func:`read_feather` +* :func:`read_parquet` +* :func:`read_table` (experimental) .. ipython:: python