2
A
回答
6
使用system.time
,或看看microbenchmark
包。
3
您還可以使用rbenchmark
包中的benchmark
函數。請參閱幫助文件here
0
如果它不能由system.time()
評估一個複雜的腳本,請嘗試:
start_time = proc.time()
<your script here>
end_time = proc.time()
print(end_time - start_time)
顯然,你需要運行線1-3彼此接近越好。
有一些例子here。
相關問題
- 1. bash中的等價命令失敗?
- 2. Python中的等價命令
- 3. Intellij的Eclipse等價命令
- 4. 在PowerShell中的Unix時間命令的等價物?
- 5. 等價命令$ USER IN windows命令行
- 6. 在Bash或命令行中打印「 - 」x20的perl的等價物
- 7. Mac等價於arecord命令?
- 8. bluetoothctl to hcitool等價命令
- 9. `tee`命令等價於* input *?
- 10. 等效於BASH(etc)'type'命令的PowerShell?
- 11. curl命令的等價http請求
- 12. CMD命令的MS-DOS等價物?
- 13. ruby中的openssl等價命令
- 14. curl命令的寧靜等價物
- 15. AIX中的jps等價命令
- 16. OS X中的GNU Linker等價命令
- 17. awk命令到PowerShell的等價
- 18. python等價的MATLAB命令prod
- 19. 做命令2時,命令1在bash
- 20. 命名等價與等價結構之間的區別?
- 21. 殺bash腳本與等待命令
- 22. 等待命令返回bash腳本
- 23. PHP的preg_quote等價於Bash?
- 24. Bash的scanf等價物?
- 25. 在X時間運行Bash命令並終止X時間
- 26. Visual Studio等價於Unix'文件'命令
- 27. Java servlet等價於命令行PHP?
- 28. Python等價於shell查找命令
- 29. 等價命令matlab <> opencv
- 30. MYSQL等價於Sybase ASE命令?
您正在查找的函數是'system.time()'。 – A5C1D2H2I1M1N2O1R2T1
您可能還想在這裏嘗試搜索:在右上角的搜索欄中輸入'[r] time'會讓您的結果(帶有R標籤)很快導致'system.time()'。 –