概述
文章
- 基础篇
- 进阶篇
- 其他篇
用户指南
NumPy 参考手册
- 数组对象
- 常量
- 通函数(ufunc)
- 常用 API
- 创建数组
- 数组处理程序
- 二进制运算
- 字符串操作
- C-Types 外部函数接口(numpy.ctypeslib)
- 时间日期相关
- 数据类型相关
- 可选的 Scipy 加速支持(numpy.dual)
- 具有自动域的数学函数( numpy.emath)
- 浮点错误处理
- 离散傅立叶变换(numpy.fft)
- 财金相关
- 实用的功能
- 特殊的 NumPy 帮助功能
- 索引相关
- 输入和输出
- 线性代数(numpy.linalg)
- 逻辑函数
- 操作掩码数组
- 数学函数(Mathematical functions)
- 矩阵库 (numpy.matlib)
- 杂项(Miscellaneous routines)
- 填充数组(Padding Arrays)
- 多项式(Polynomials)
- 随机抽样 (numpy.random)
- 操作集合(Set routines)
- 排序,搜索和计数(Sorting, searching, and counting)
- Statistics
- Test Support (numpy.testing)
- Window functions
- 打包(numpy.distutils)
- NumPy Distutils 用户指南
- NumPy C-API
- NumPy 的内部
- NumPy 和 SWIG
其他文档
文章来源于网络收集而来,版权归原创者所有,如有侵权请及时联系!
输入和输出
NumPy二进制文件(NPY,NPZ)
方法 | 描述 |
---|---|
loadopen in new window(file[, mmap_mode, allow_pickle, …]) | 从.npy、.npz或pickle文件加载阵列或pickle对象。 |
saveopen in new window(file, arr[, allow_pickle, fix_imports]) | 将数组保存为NumPy.npy格式的二进制文件。 |
savezopen in new window(file, *args, **kwds) | 将几个数组以未压缩的.npz格式保存到单个文件中。 |
savez_compressedopen in new window(file, *args, **kwds) | 以压缩的.npz格式将几个数组保存到单个文件中。 |
有关这些二进制文件类型的格式,请参阅 numpy.lib.format
open in new window
文本文件
方法 | 描述 |
---|---|
loadtxtopen in new window(fname[, dtype, comments, delimiter, …]) | 从文本文件加载数据。 |
savetxtopen in new window(fname, X[, fmt, delimiter, newline, …]) | 将数组保存到文本文件。 |
genfromtxtopen in new window(fname[, dtype, comments, …]) | 从文本文件加载数据,并按指定方式处理缺少的值。 |
fromregexopen in new window(file, regexp, dtype[, encoding]) | 使用正则表达式解析从文本文件构造数组。 |
fromstringopen in new window(string[, dtype, count, sep]) | 从字符串中的文本数据初始化的新一维数组。 |
ndarray.tofileopen in new window(fid[, sep, format]) | 将数组以文本或二进制形式写入文件(默认)。 |
ndarray.tolistopen in new window() | 以Python标量的a.ndim级深嵌套列表的形式返回数组。 |
原始二进制文件
方法 | 描述 |
---|---|
fromfileopen in new window(file[, dtype, count, sep, offset]) | 从文本或二进制文件中的数据构造数组。 |
ndarray.tofileopen in new window(fid[, sep, format]) | 将数组以文本或二进制形式写入文件(默认)。 |
字符串格式
方法 | 描述 |
---|---|
array2stringopen in new window(a[, max_line_width, precision, …]) | 返回数组的字符串表示形式。 |
array_repropen in new window(arr[, max_line_width, precision, …]) | 返回数组的字符串表示形式。 |
array_stropen in new window(a[, max_line_width, precision, …]) | 返回数组中数据的字符串表示形式。 |
format_float_positionalopen in new window(x[, precision, …]) | 将浮点标量格式化为位置表示法中的十进制字符串。 |
format_float_scientificopen in new window(x[, precision, …]) | 将浮点标量格式化为科学记数法中的十进制字符串。 |
内存映射文件
方法 | 描述 |
---|---|
memmapopen in new window | 创建存储在磁盘上二进制文件中的阵列的内存映射。 |
文本格式选项
方法 | 描述 |
---|---|
set_printoptionsopen in new window([precision, threshold, …]) | 设置打印选项。 |
get_printoptionsopen in new window() | 返回当前打印选项。 |
set_string_functionopen in new window(f[, repr]) | 设置在更好的打印数组时要使用的Python函数。 |
printoptionsopen in new window(*args, **kwargs) | 上下文管理器,用于设置打印选项。 |
基数n表示
方法 | 描述 |
---|---|
binary_repropen in new window(num[, width]) | 以字符串形式返回输入数字的二进制表示形式。 |
base_repropen in new window(number[, base, padding]) | 返回给定基本系统中数字的字符串表示形式。 |
数据源
方法 | 描述 |
---|---|
DataSourceopen in new window([destpath]) | 通用数据源文件(file、http、ftp等)。 |
二进制格式描述
方法 | 描述 |
---|---|
lib.formatopen in new window | 二进制序列化 |
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论