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 中有两个具有相似算法的脚本。我想通过计算成本来比较它们。我该怎么做这个计算?
谢谢。
劳尔
这是一个重复的问题。
第一种方式:
ptm <- proc.time() #your function here proc.time() - ptm
或者另一种方式:
system.time({ #your function here })