10
根據文檔,microbenchmark:::autoplot
「使用ggplot2生成一個更清晰的微基準標記時序圖。」autoplot.microbenchmark實際繪製了什麼?
酷!讓我們嘗試示例代碼:
library("ggplot2")
tm <- microbenchmark(rchisq(100, 0),
rchisq(100, 1),
rchisq(100, 2),
rchisq(100, 3),
rchisq(100, 5), times=1000L)
autoplot(tm)
我沒有看到有關文檔中的...粘糊糊的起伏什麼,但是從我的this answer by the function creator最好的猜測是,這就像一個平滑系列運行所需時間的箱形圖,上部和下部四分位連接在形狀的主體上。也許?這些情節看起來太有趣了,不知道這裏發生了什麼。
這是什麼情節?