You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Pandas on Ray is an early stage DataFrame library that wraps Pandas and transparently distributes the data and computation. The user does not need to know how many cores their system has, nor do they need to specify how to distribute the data. In fact, users can continue using their previous Pandas notebooks while experiencing a considerable speedup from Pandas on Ray, even on a single machine. Only a modification of the import statement is needed, as we demonstrate below. Once you’ve changed your import statement, you’re ready to use Pandas on Ray just like you would Pandas.
404
+
pandas on Ray is an early stage DataFrame library that wraps pandas and transparently distributes the data and computation. The user does not need to know how many cores their system has, nor do they need to specify how to distribute the data. In fact, users can continue using their previous pandas notebooks while experiencing a considerable speedup from pandas on Ray, even on a single machine. Only a modification of the import statement is needed, as we demonstrate below. Once you’ve changed your import statement, you’re ready to use pandas on Ray just like you would pandas.
405
405
406
406
.. code:: python
407
407
@@ -412,7 +412,7 @@ Pandas on Ray is an early stage DataFrame library that wraps Pandas and transpar
412
412
`Vaex <https://docs.vaex.io/>`__
413
413
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
414
414
415
-
Increasingly, packages are being built on top of pandas to address specific needs in data preparation, analysis and visualization. Vaex is a python library for Out-of-Core DataFrames (similar to Pandas), to visualize and explore big tabular datasets. It can calculate statistics such as mean, sum, count, standard deviation etc, on an N-dimensional grid up to a billion (10\ :sup:`9`) objects/rows per second. Visualization is done using histograms, density plots and 3d volume rendering, allowing interactive exploration of big data. Vaex uses memory mapping, zero memory copy policy and lazy computations for best performance (no memory wasted).
415
+
Increasingly, packages are being built on top of pandas to address specific needs in data preparation, analysis and visualization. Vaex is a python library for Out-of-Core DataFrames (similar to pandas), to visualize and explore big tabular datasets. It can calculate statistics such as mean, sum, count, standard deviation etc, on an N-dimensional grid up to a billion (10\ :sup:`9`) objects/rows per second. Visualization is done using histograms, density plots and 3d volume rendering, allowing interactive exploration of big data. Vaex uses memory mapping, zero memory copy policy and lazy computations for best performance (no memory wasted).
416
416
417
417
* vaex.from_pandas
418
418
* vaex.to_pandas_df
@@ -422,7 +422,7 @@ Increasingly, packages are being built on top of pandas to address specific need
422
422
Extension data types
423
423
--------------------
424
424
425
-
Pandas provides an interface for defining
425
+
pandas provides an interface for defining
426
426
:ref:`extension types <extending.extension-types>` to extend NumPy's type
427
427
system. The following libraries implement that interface to provide types not
428
428
found in NumPy or pandas, which work well with pandas' data containers.
Copy file name to clipboardExpand all lines: doc/source/getting_started/install.rst
+2-2
Original file line number
Diff line number
Diff line change
@@ -184,7 +184,7 @@ You can find simple installation instructions for pandas in this document: ``ins
184
184
Installing from source
185
185
~~~~~~~~~~~~~~~~~~~~~~
186
186
187
-
See the :ref:`contributing guide <contributing>` for complete instructions on building from the git source tree. Further, see :ref:`creating a development environment <contributing.dev_env>` if you wish to create a *pandas* development environment.
187
+
See the :ref:`contributing guide <contributing>` for complete instructions on building from the git source tree. Further, see :ref:`creating a development environment <contributing.dev_env>` if you wish to create a pandas development environment.
188
188
189
189
Running the test suite
190
190
----------------------
@@ -249,7 +249,7 @@ Recommended dependencies
249
249
Optional dependencies
250
250
~~~~~~~~~~~~~~~~~~~~~
251
251
252
-
Pandas has many optional dependencies that are only used for specific methods.
252
+
pandas has many optional dependencies that are only used for specific methods.
253
253
For example, :func:`pandas.read_hdf` requires the ``pytables`` package, while
254
254
:meth:`DataFrame.to_markdown` requires the ``tabulate`` package. If the
255
255
optional dependency is not installed, pandas will raise an ``ImportError`` when
0 commit comments