# col1 col2 # 0 100 1 # 1 2 3 # 2 100 5 # 3 100 7 # 4 100 9 このwhereは,条件式が成り立つものをとってきて,それ以外はNaNで埋める. 二つ目の引数は,このNaNになるところをそれで埋める. pandas.Series.where other : scalar, NDFrame, or callable Entries where cond is Fals...
"nan"、"None"という文字列に変換されるためです。 replace()しましょう。
Series( [ "Rose", "Lili", "Tulip", np.NaN, "Orchid", "Hibiscus", "Jasmine", "Daffodil", np.NaN, "SunFlower", "Daisy", ] ) series1 = series.map("The name of the flower is {}.".format) print(series1) 出力:0 The name of the flower is Rose. 1 The name of the flower...