「pandas」pandas.Seriesでデータ型dtypeを変更する方法

環境
pandas 1.4.2
PyCharm 2021.3.3

構文
pd.Series([要素1,要素2], dtype=np.float64)
pd.Series([要素1, 要素2], dtype=’float64′)
各種メソッドの引数でデータ型dtypeを指定して
float64
倍精度浮動小数点型(符号部1ビット、指数部11ビット、仮数部52ビット)

使用例

import pandas as pd
import numpy as np

sa = pd.Series([4, 1, 2], dtype=np.float64)
print(sa.dtype)

print("文字列float64のデータ型")
sb = pd.Series([5, 1, 2], dtype='float64')
print(sb.dtype)

print("型コードの文字列f8")
sc = pd.Series([6, 1, 2], dtype='f8')
print(sc.dtype)

実行結果
float64
文字列float64のデータ型
float64
型コードの文字列f8
float64

Pandas

Posted by arkgame