Python for Data Analysis: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 22: Line 22:
* [[plotly]]
* [[plotly]]


Python programs can be executed from [[IPhyton]], [[Jupyter Notebook]] and [[Jupyter Lab]].
Python programs can be executed from [[IPython]], [[Jupyter Notebook]] and [[Jupyter Lab]].


In addition to all these, Python's overall strength for general-purpose software engineering makes it a great glue language for data analysis applications.
In addition to all these, Python's overall strength for general-purpose software engineering makes it a great glue language for data analysis applications.

Revision as of 23:34, 14 May 2024

External

Internal

Overview

This article is loosely based on Python for Data Analysis: Data Wrangling with pandas, NumPy, and Jupyter 3rd Edition by Wes McKinney.

The set of packages referred from this article focus on structured data, which includes tabular or spreadsheet-like data, in which each column may be a different type (relational database data, spreadsheets and CSV files), multidimensional arrays (matrices), multiple tables or related data joined by key columns, and evenly and unevenly spaced time series.

Python is uniquely positioned for use in data analysis because of the availability of many specialized data processing libraries:

Visualization libraries are also available in Python:

Python programs can be executed from IPython, Jupyter Notebook and Jupyter Lab.

In addition to all these, Python's overall strength for general-purpose software engineering makes it a great glue language for data analysis applications.