関数の機能:データの型を変換した配列のコピーを返却
例 : 整数型から浮動小数点型へ変換
>>> a = np.array([0, 1, 2])
>>> b = a.astype(float)
>>> b
array([0., 1., 2.])
>>> a.dtype
dtype('int64')
>>> b.dtype
dtype('float64')
関連項目 属性ndarray.dtypeの使い方の例
関数の機能:データの型を変換した配列のコピーを返却
>>> a = np.array([0, 1, 2])
>>> b = a.astype(float)
>>> b
array([0., 1., 2.])
>>> a.dtype
dtype('int64')
>>> b.dtype
dtype('float64')
関連項目 属性ndarray.dtypeの使い方の例