Numpy 的 array(~)
方法根据提供的对象构造 Numpy 数组,该对象通常是列表或元组。
参数
1. object
| array-like objects
用于构建 Numpy 数组的数据源。通常,我们使用列表或元组。
2. dtype
| string
或 type
| optional
Numpy 数组中存储的数据类型。默认情况下,将推断类型。
3. ndmin
| int
| optional
Numpy 数组具有的最小维数。
返回值
具有指定数据类型的 Numpy 数组。
例子
使用列表创建 Numpy 数组
np.array([1,2,3])
array([1, 2, 3])
数据的推断类型为 int
。
使用元组创建 Numpy 数组
np.array((1,2,3))
array([1, 2, 3])
创建具有显式类型的 Numpy 数组
np.array((1,2,3), float)
np.array((1,2,3), "float")
array([1., 2., 3.])
请注意我们如何使用 1.
而不仅仅是 1
- 这意味着 Numpy 数组中的数据类型为 float
而不是 int
。您还可以以字符串形式提供 dtype
,例如 "float"
。
创建 2D Numpy 数组
np.array([[1, 2, 3], [4, 5, 6]])
array([[1, 2, 3],
[4, 5, 6]])
使用 ndmin 创建 2D Numpy 数组
np.array([1, 2], ndmin=2)
array([[1, 2]])
在这里,通常我们会有一个 1D Numpy 数组,但由于我们指定了 ndmin=2
,所以我们得到了一个 2D Numpy 数组。
相关用法
- Python NumPy array_equal方法用法及代码示例
- Python NumPy array_equiv方法用法及代码示例
- Python NumPy array_split方法用法及代码示例
- Python NumPy array2string方法用法及代码示例
- Python arcgis.gis._impl._profile.ProfileManager.save_as用法及代码示例
- Python arcgis.raster.functions.ccdc_analysis用法及代码示例
- Python arcgis.geometry.functions.trim_extend用法及代码示例
- Python arcgis.raster.analytics.sample用法及代码示例
- Python arcgis.features.analysis.derive_new_locations用法及代码示例
- Python arcgis.features.analyze_patterns.calculate_density用法及代码示例
- Python arcgis.geometry.Geometry.label_point用法及代码示例
- Python arcgis.plan_routes用法及代码示例
- Python arcgis.mapping.forms.FormInfo用法及代码示例
- Python arcgis.gis.UserManager.get用法及代码示例
- Python arcgis.raster.ImageryLayerCacheManager.update_tiles用法及代码示例
- Python arcgis.geometry.Geometry.true_centroid用法及代码示例
- Python arcgis.gis.User.generate_direct_access_url用法及代码示例
- Python arcgis.gis.GroupMigrationManager.create用法及代码示例
- Python arcgis.geometry.Geometry.hull_rectangle用法及代码示例
- Python arcgis.features.analysis.summarize_within用法及代码示例
- Python arcgis.geometry.filters.intersects用法及代码示例
- Python arcgis.geometry.functions.project用法及代码示例
- Python arcgis.raster.functions.percentile用法及代码示例
- Python arcgis.raster.ImageryLayer.save用法及代码示例
- Python arcgis.geoanalytics.summarize_data.reconstruct_tracks用法及代码示例
注:本文由纯净天空筛选整理自Isshin Inada大神的英文原创作品 NumPy | array method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。