Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在 spotfire 中使用 R-Script / TERR 比较两个数据表列 ID。由于某些限制,我无法安装名为“compare”、“SQLDf”的函数。我可以使用称为“复制”的功能。有人可以在不使用上述功能的情况下帮助我创建示例脚本吗?
请查看以下图片了解详细要求。
两个数据表
结果表
谢谢,-维迪亚
假设您有两个向量 setA 和 setB。您可以通过以下方式获得结果
# in A but not in B setdiff(setA,setB) # in B but not in A setdiff(setB,setA) # both in A and B intersect(setA,setB)
如果您只想知道计数,请使用长度函数。这可能不是您正在寻找的确切答案,但使用上述功能,您可以创建任何您想要的集合。如果您需要有关特定逻辑的帮助,请更新您的问题。