Skip to content

Commit

Permalink
replace ooc with dataset
Browse files Browse the repository at this point in the history
  • Loading branch information
mrocklin committed Jul 13, 2015
1 parent 3c47a30 commit ec909cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/source/array-overview.rst
Expand Up @@ -117,14 +117,14 @@ which we can slice out numpy arrays.
.. code-block:: Python
>>> x = ooc[1000:2000, :2000] # pull out numpy array from on-disk object
>>> x = dataset[1000:2000, :2000] # pull out numpy array from on-disk object
This API has become a standard in Scientific Python. Dask works with any
object that supports this operation and the equivalent assignment syntax.
.. code-block:: Python
>>> ooc[1000:2000, :2000] = x # Store numpy array in on-disk object
>>> dataset[1000:2000, :2000] = x # Store numpy array in on-disk object
Limitations
Expand Down

0 comments on commit ec909cb

Please sign in to comment.