@@ -234,7 +234,8 @@ Optional dependencies
234
234
~~~~~~~~~~~~~~~~~~~~~
235
235
236
236
Pandas has many optional dependencies that are only used for specific methods.
237
- For example, :func: `pandas.read_hdf ` requires the ``pytables `` package. If the
237
+ For example, :func: `pandas.read_hdf ` requires the ``pytables `` package, while
238
+ :meth: `DataFrame.to_markdown ` requires the ``tabulate `` package. If the
238
239
optional dependency is not installed, pandas will raise an ``ImportError `` when
239
240
the method requiring that dependency is called.
240
241
@@ -255,6 +256,7 @@ gcsfs 0.2.2 Google Cloud Storage access
255
256
html5lib HTML parser for read_html (see :ref: `note <optional_html >`)
256
257
lxml 3.8.0 HTML parser for read_html (see :ref: `note <optional_html >`)
257
258
matplotlib 2.2.2 Visualization
259
+ numba 0.46.0 Alternative execution engine for rolling operations
258
260
openpyxl 2.5.7 Reading / writing for xlsx files
259
261
pandas-gbq 0.8.0 Google Big Query access
260
262
psycopg2 PostgreSQL engine for sqlalchemy
@@ -264,6 +266,7 @@ pyreadstat SPSS files (.sav) reading
264
266
pytables 3.4.2 HDF5 reading / writing
265
267
qtpy Clipboard I/O
266
268
s3fs 0.3.0 Amazon S3 access
269
+ tabulate 0.8.3 Printing in Markdown-friendly format (see `tabulate `_)
267
270
xarray 0.8.2 pandas-like API for N-dimensional data
268
271
xclip Clipboard I/O on linux
269
272
xlrd 1.1.0 Excel reading
@@ -301,3 +304,4 @@ top-level :func:`~pandas.read_html` function:
301
304
.. _html5lib : https://github.com/html5lib/html5lib-python
302
305
.. _BeautifulSoup4 : http://www.crummy.com/software/BeautifulSoup
303
306
.. _lxml : http://lxml.de
307
+ .. _tabulate : https://github.com/astanin/python-tabulate
0 commit comments