python pandas series 型確認
良く忘れるのでメモ。pythonを利用しているときに型を確認する方法です。
print(SeriesVariableName.dtype)で確認できます。
確認コード
import pandas as pd
s1 = pd.Series([10, 20, 30,40], dtype=’float64′)
print(s1.dtype)
s2 = pd.Series([10, 20, 30,40], dtype=’int’)
print(s2.dtype)
s3 = pd.Series([‘a’, ‘b’, ‘c’,’d’], dtype=’object’)
print(s3.dtype)
実行結果
float64
int64
object
int64
object
コメント