Here is a screenshot of the dataset in .CSV file我正在尝试将.csv文件分为两列,但在将它们分开时出现错误 TypeError:/的不支持的操作数类型:“ str”和“ str”
我试图通过使用applymap将它们转换为int,但收到此错误:AttributeError:“系列”对象没有属性“ applymap”
data = pd.read_csv('output.csv')
f2 = data ['fluence_2'] .applymap(int) f3 = data ['fluence_3'] .applymap(int)
H32 = f3 / f2
我不知道从这里去哪里。