0
我試圖來分析在R的功能,但我得到的錯誤:Rprof上猛砸失敗的Windows
Fatal error: setting profile timer failed
當試圖運行代碼
f <- function() mean(c(1:100)) tmp <- tempfile() Rprof(tmp) f() Rprof(NULL)
我在Bash for Windows上使用R 3.3.1。
我試圖來分析在R的功能,但我得到的錯誤:Rprof上猛砸失敗的Windows
Fatal error: setting profile timer failed
當試圖運行代碼
f <- function() mean(c(1:100)) tmp <- tempfile() Rprof(tmp) f() Rprof(NULL)
我在Bash for Windows上使用R 3.3.1。
它可能涉及到定時器系統調用尚未實現https://github.com/Microsoft/BashOnWindows/issues/307
應固定在接下來的內幕建設,也對創作者更新(版本預計2017年三月)
我得到同樣的錯誤。 – Galadude
錯誤消息意味着'setitimer(ITIMER_PROF ...'失敗。 –