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.
我不小心which()用自己的代码从 R 中的基本包重写了函数。我非常需要原始的默认which()函数,但是错误地使用新的(我自己的)which()函数定义(讽刺地使用了其中的原始which()函数)来保存我的工作区(R 控制台),所以现在它根本不起作用。 . 我如何取回默认值which()?有没有办法找到which() 函数的源代码?
which()
which(
尝试应该工作...
which <- base:::which
这是明确的,或者您可以使用rm( which )[谢谢@mnel ]
rm( which )