ml.operations.refs <- atime::references_best(atime.operations)
ml.operations.pred <- predict(ml.operations.refs)
ml.operations <- plot(ml.operations.pred) +
theme(text = element_text(size = 20)) +
ggtitle(sprintf("microbenchmarking, N times", n.rows)) +
scale_x_log10("N = number of Mean, SD, Length to compute") +
scale_y_log10("Computation time (seconds)\nmedian line, min/max band\nover 10 timings") +
facet_null() +
scale_fill_manual(values = ml.colors) +
scale_color_manual(values = ml.colors)
Error Message I am getting
> ml.operations.pred <- predict(ml.operations.refs)
Error in `[.data.table`(data.table(unit = names(L)), , { :
seconds=0.01 is too large, please decrease to a value that intersects at least one of the empirical curves
@tdhock
I am trying to run atime on the microbenchmark on when collapse is actually fast from the link below https://raw.githubusercontent.com/SebKrantz/collapse/master/misc/useR2022%20presentation/collapse_useR2022_final.pdf
this is my atime code and Plot code
Error Message I am getting