NumPy ndarray: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
(Created page with "=Internal= * Numpy Concepts =Overview= <code>ndarray</code> is an N-dimensional array object, which is a fast, flexible container for large datasets in Python. It is used to implement a Pandas Series.")
 
Line 2: Line 2:
* [[Numpy_Concepts#numpy|Numpy Concepts]]
* [[Numpy_Concepts#numpy|Numpy Concepts]]
=Overview=
=Overview=
<code>ndarray</code> is an N-dimensional array object, which is a fast, flexible container for large  datasets in Python. It is used to implement a Pandas [[Pandas_Series#Overview|Series]].
<code>ndarray</code> is an N-dimensional array object. It is a fast, flexible container for large  datasets in Python. It is used to implement a Pandas [[Pandas_Series#Overview|Series]]. It allows performing mathematical operations on whole blocks of data using similar syntax to the equivalent operation between scalar elements.

Revision as of 19:27, 20 May 2024

Internal

Overview

ndarray is an N-dimensional array object. It is a fast, flexible container for large datasets in Python. It is used to implement a Pandas Series. It allows performing mathematical operations on whole blocks of data using similar syntax to the equivalent operation between scalar elements.