Pythonリストからシリーズ(Series)オブジェクトを作る
ice_cream = ["Chocolate", "Vanilla", "Strawberry", "Rum Raisin"]
pd.Series(ice_cream)
結果:
0 Chocolate 1 Vanilla 2 Strawberry 3 Rum Raisin dtype: object
dtypeは文字列なので、objectですね。
CSVからデータを読み込んでシリーズに変換
pd.read_csv("test.csv", usecols = ["price"], squeeze=True)
priceというカラムを抜き出してDataFrameからSeriesに変換(squeeze=True)する。
コメント