我有一個(gè)數(shù)據(jù)框,當(dāng)我嘗試計(jì)算 pct_change() 時(shí),它顯示了一個(gè)錯(cuò)誤 TypeError: unsupported operand type(s) for /: 'str' and 'float'。然后我嘗試將類型轉(zhuǎn)換為 float,它向我顯示ValueError: could not convert string to float:unemployment_df['Unemployment_pct_change'] = unemployment_df['Unemployment_Value'].pct_change()
unemployment_df['Unemployment_Value']=unemployment_df['Unemployment_Value'].astype(float)但不知道弦在哪里,是什么弦?所以我試圖找到單元格索引,其中單元格值是字符串而不是數(shù)字。怎么做?謝謝
如何查找數(shù)據(jù)框中值為字符串類型的單元格
阿波羅的戰(zhàn)車
2023-09-26 17:31:18