博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
《利用python进行数据分析》NumPy基础:数组和矢量计算 学习笔记
阅读量:5286 次
发布时间:2019-06-14

本文共 731 字,大约阅读时间需要 2 分钟。

一.有关NumPy

(一)官方解释

NumPy is the fundamental package for scientific computing with Python. It contains among other things:

  • a powerful N-dimensional array object
  • sophisticated (broadcasting) functions
  • tools for integrating C/C++ and Fortran code
  • useful linear algebra, Fourier transform, and random number capabilities

Besides its obvious scientific uses, NumPy can also be used as an efficient multi-dimensional container of generic data. Arbitrary data-types can be defined. This allows NumPy to seamlessly and speedily integrate with a wide variety of databases.

(二)书本介绍

NumPy(Numerical Python)是高性能科学计算数据分析的基础包。

(二)NumPy的ndarray:一种多维数组对象

书本p83相关补充:

shape:表示各维度大小

dtype:用于说明数组数据类型

转载于:https://www.cnblogs.com/zzhzhao/p/5423872.html

你可能感兴趣的文章
利用余数选择特殊位置元素
查看>>
position-relative 的问题
查看>>
浏览器视口宽度高度的封装
查看>>
jquery UI 弹出框
查看>>
CSS之float(解决float自增长高度问题)
查看>>
Java设计模式——策略模式(Strategy Pattern)
查看>>
Index Filter及ICP特性
查看>>
scanf格式控制符之%[]的应用
查看>>
Python 多线程教程:并发与并行
查看>>
一步步学习微软InfoPath2010和SP2010--第十四章节--高级选项(1)--InfoPath规则检查器...
查看>>
SharePoint 2013 Installation and Configuration Issues
查看>>
常用处理数据用法es6 语法糖总结
查看>>
源代码管理工具 GIT的使用
查看>>
javascript 调用 IndexedDb示例
查看>>
如何使用Iveely的数据存储引擎 Iveely Database
查看>>
[Matlab]一个数据集的处理
查看>>
创建的vue项目出错的时候,提示This dependency was not found错误的处理方法
查看>>
CSS中!important的使用
查看>>
windbg学习-显示结构体大小
查看>>
win7下windbg本机内核调试
查看>>