- Learning pandas(Second Edition)
- Michael Heydt
- 142字
- 2021-07-02 20:37:03
Numeric and scientific computing - NumPy and SciPy
NumPy (http://www.numpy.org/) is the cornerstone toolbox for scientific computing with Python, and is included in most distributions of modern Python. It is actually a foundational toolbox from which pandas was built, and when using pandas you will almost certainly use it frequently. NumPy provides, among other things, support for multidimensional arrays with basic operations on them and useful linear algebra functions.
The use of the array features of NumPy goes hand in hand with pandas, specifically the pandas Series object. Most of our examples will reference NumPy, but the pandas Series functionality is such a tight superset of the NumPy array that we will, except for a few brief situations, not delve into details of NumPy.
SciPy (https://www.scipy.org/) provides a collection of numerical algorithms and domain-specific toolboxes, including signal processing, optimization, statistics, and much more.
- Mastering Concurrency Programming with Java 8
- Design Principles for Process:driven Architectures Using Oracle BPM and SOA Suite 12c
- Kibana Essentials
- Pandas Cookbook
- Apache Spark 2.x Machine Learning Cookbook
- Network Automation Cookbook
- GameMaker Programming By Example
- Linux:Embedded Development
- RabbitMQ Essentials
- HTML 5與CSS 3權威指南(第3版·上冊)
- Unity 2017 Mobile Game Development
- Python爬蟲、數據分析與可視化:工具詳解與案例實戰
- 實戰Java高并發程序設計(第2版)
- ASP.NET求職寶典
- Go語言入門經典