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.
可能重复: R:屏蔽函数
我正在使用包moments和fUnitRoots. 它们都有一个名为“kurtosis”的函数(更准确地说,包fUnitRoots调用timeDate也具有函数“kurtosis”的包)。它们给出了非常不同的结果,因为它们的公式略有不同。我想使用 library 中的函数 skewness moments,但是如果加载了两个库,则使用的函数是来自fUnitRoots.
moments
fUnitRoots
timeDate
如何在不卸载其中一个库的情况下指定要从哪个库中使用给定函数?
使用::运算符。语法是package::name. 所以它会moments::kurtosis。
::
package::name
moments::kurtosis