私のデータフレームです。ValueError:文字列を浮動小数点に変換できませんでした:退屈
tag score
0 hiding 63.0
1 windowsill 1.0
2 porch 1.0
3 deck 1.0
4 bored 1.0
私はタグに対してスコアをプロットしようとしています。
tag_df = pd.DataFrame(list(tag_map.items()), columns=['tag', 'score'])
plt.plot(tag_df['tag'], tag_df['score'], color='blue')
私は次のエラーを取得する、
ValueError: could not convert string to float: 'bored'
は、私はここで間違って何をしているのですか?
のですか? – sgrg
データフレームを取得しているハッシュマップです。 –
matplotlib行をインクルードするようにコードを更新しました。 –