gpt4 book ai didi

python - 如何修复将 $ 解释为 $text $ 中的定界符的数据框?

转载 作者:行者123 更新时间:2023-11-28 16:57:20 25 4
gpt4 key购买 nike

我正在将许多推特文本从数据库加载到数据框中。但是,当原始文本中有多个$时,dataframe会自动将$解释为分隔符,并在这两个$之间传递文本转换为 mathjax 格式。 $ 消失了。

Please check the error screen clip here

这是我放在jupyter notebook中的文本代码:

textdf = pd.DataFrame(["There are totally $1000 in account, $200 in case."],columns=['text'])

textdf.head()

错误输出是这样的,这不是预期的。

"There are totally  1000𝑖𝑛𝑎𝑐𝑐𝑜𝑢𝑛𝑡, 200 in case."

预期的结果就是纯文本

"There are totally $1000 in account, $200 in case."

最佳答案

您在 Jupyter 中遇到了一个错误。单元格中的 $...$ 用于表示 MathMode。你可以逃避它以获得你想要的:

textdf = pd.DataFrame(["There are totally \$1000 in account, \$200 in case."],columns=['text'])

向 Jupyter Notebook 团队提交错误。

关于python - 如何修复将 $ 解释为 $text $ 中的定界符的数据框?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57137920/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com