处理comment列数据 def comment_p(x): x = x.replace(r'+','') if '万' in x: x = x.replace(r'万','') x=float(x)*10000 return x else: return xdf['new_comment'] = df['comment'].apply(lambda x:comment_p(x)).astype('int')报错1 df['new_comment'] = df['comment'].apply(lambda x:comment_p(x)).astype('int')NameError: name 'score' is not defined
时间: 2023-09-14 16:08:19 浏览: 130
Python 新手必会的 9 个 Python 教程.docx
根据您提供的代码,`score` 变量并没有被定义,所以会出现 `NameError`。我猜测您可能是想将 `score` 替换为 `x`,因为在 `comment_p` 函数中并没有定义 `score` 变量。您可以尝试将 `score` 替换为 `x`,如下所示:
```
# 处理comment列数据
def comment_p(x):
x = x.replace(r'+','')
if '万' in x:
x = x.replace(r'万','')
x = float(x) * 10000
return int(x)
else:
return int(x)
df['new_comment'] = df['comment'].apply(lambda x: comment_p(x)).astype('int')
```
这样应该就可以将 `comment` 列中的数据转换为整数类型了。
阅读全文