用刀匹配两个列
我想根据数字“匹配”两列,创建新列,其中匹配的为True,不匹配的为False,例如,两列是“Node id”和“IDs”
Node id | IDs | Matching |
---|---|---|
DB Query:0:0: 188 | [(#0), (#188)] | 例如,这里 0 0 188 匹配,因此其真实 |
数据库查询:197:0:122 | [(#197), (#0), (#135)] | 这里 197 0 135 不匹配,所以它是 False |
我想在 Knime 的列表达式或规则引擎中编写查询,有人可以帮忙吗? :slight_smile:
我尝试使用此查询在列表达式中执行此操作,但无法计算出来,如何进一步编写
if (column("IDs").=== 0:0:188 ){
"True"
}
else "False"
I want to “match” two column based on numbers, create new column with those matching True and those not matching is False for example, two column are “Node id” and “IDs”
Node id | IDs | Matching |
---|---|---|
DB Query:0:0:188 | [(#0), (#188)] | for eg, here 0 0 188 are matched so its True |
DB Query:197:0:122 | [(#197), (#0), (#135)] | here 197 0 135 not matched so its False |
I want to write query in Column Expression or Rule Engine in Knime, can anybody help ? :slight_smile:
I tried doing it in Column Expression with this query but cant figure it, how to write it further
if (column("IDs").=== 0:0:188 ){
"True"
}
else "False"
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论