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.
假设有一个fr由 3 个向量组成的框架,列名为“a”“b”“c”。我有一个MRTask给我一个新的向量。Vec new_vec_a = FooReturningNewVec(fr.vec("a")). 现在我想fr.vec("a")用new_vec_a.
fr
MRTask
Vec new_vec_a = FooReturningNewVec(fr.vec("a"))
fr.vec("a")
new_vec_a
我可以使用已经存在的方法吗,如果不是,您将如何建议创建此方法。