Python Pandas 无法查询字符串变量

发布于 2025-01-10 10:09:41 字数 510 浏览 0 评论 0原文

我正在尝试使用地址作为唯一键合并两个数据表。对于一个数据表,我什至无法查询字符串值,而另一个数据表则可以。我指定的测试地址是“2840 28TH AVE S”

这是测试: 缺少信息

这是带有地址的基表: 带有地址的基表

这是我进行地址查询的不同表,它有效 函数语法

我查看了原始表的数据类型,没有什么明显的,并且还检查了空白。我该如何解决这个问题?语法看起来没问题 数据类型

I'm trying to merge two datatables using address as the unique key. For one datatable, I'm not able to even query a string value while the other datatable I can. The test address I'm specifying is '2840 28TH AVE S'

Here is the test:
Missing Info

Here is the base table with address:
Base table with address

Here is the different table where I did an address query, and it worked
Functional syntax

I looked at the datatypes for the original table, nothing is glaring, and also checked for white spaces. How can I fix this? The syntax seems to be alright
Datatypes

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

泪意 2025-01-17 10:09:41

我必须对空白区域进行适当的条纹才能使其正常工作!

Hen['街道']= Hen['地址'].str.strip()

I had to do a proper striping of the white space to make it work!

Hen['Street']= Hen['address'].str.strip()

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文