Skip to content

Commit

Permalink
Simplify language in API doc
Browse files Browse the repository at this point in the history
  • Loading branch information
mrocklin committed Aug 7, 2019
1 parent 3ecd678 commit f26d374
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docs/source/api.rst
Expand Up @@ -3,12 +3,12 @@ API

Dask APIs generally follow from upstream APIs:

- The :doc:`Dask Array API <array-api>` follows the NumPy API
- The :doc:`Dask DataFrame API <dataframe-api>` follows the Pandas API
- The `Dask-ML API <https://ml.dask.org/modules/api.html>`_ follows the Scikit-Learn API and other related machine learning libraries
- The :doc:`Dask Bag API <bag-api>` follows the map/filter/groupby/reduce API common in PySpark, PyToolz, and the Python standard library
- The :doc:`Dask Delayed API <delayed-api>` wraps general Python code
- The :doc:`Real-time Futures API <futures>` follows the `concurrent.futures <https://docs.python.org/3/library/concurrent.futures.html>`_ API from the standard library.
- :doc:`Arrays<array-api>` follows NumPy
- :doc:`DataFrames <dataframe-api>` follows Pandas
- :doc:`Bag <bag-api>` follows map/filter/groupby/reduce common in Spark and Python iterators
- `Dask-ML <https://ml.dask.org/modules/api.html>`_ follows the Scikit-Learn and others
- :doc:`Delayed <delayed-api>` wraps general Python code
- :doc:`Futures <futures>` follows `concurrent.futures <https://docs.python.org/3/library/concurrent.futures.html>`_ from the standard library for real-time computation.

Additionally, Dask has its own functions to start computations, persist data in
memory, check progress, and so forth that complement the APIs above.
Expand Down

0 comments on commit f26d374

Please sign in to comment.