其他分享
首页 > 其他分享> > numpy 数据类型转化

numpy 数据类型转化

作者:互联网

查看数据类型:dtype

例子1:

In[1]: a = np.arange(5)
In[2]: a.dtype
Out[1]:  dtype('int32')

例子2:

In[1]: b = np.array([1.00, 2.00 ,3.00 ,4.00 ], dtype=np.float64)
In[2]: b.dtype
Out[1]: dtype('float64')

数据转换:astype

例子1:

In[1]: a = a.astype(np.float64)
In[1]: a.dtype
Out[1]: dtype('float64')

例子2:

In[1]: b = b.astype(np.int32)
In[2]: b.dtype
Out[2]: dtype('int32')

标签:int32,float64,dtype,数据类型,astype,转化,np,numpy,Out
来源: https://www.cnblogs.com/CharlesLC/p/16506843.html