Python Pandas 无法查询字符串变量
我正在尝试使用地址作为唯一键合并两个数据表。对于一个数据表,我什至无法查询字符串值,而另一个数据表则可以。我指定的测试地址是“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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我必须对空白区域进行适当的条纹才能使其正常工作!
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()