From 8503eea79697ea642c6502d838cb6fcd32d33d0d Mon Sep 17 00:00:00 2001 From: Toby Dylan Hocking Date: Wed, 7 Aug 2024 13:30:56 -0400 Subject: [PATCH] use on instead of in --- man/references_best.Rd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/man/references_best.Rd b/man/references_best.Rd index 8005a88..cabf070 100644 --- a/man/references_best.Rd +++ b/man/references_best.Rd @@ -42,7 +42,7 @@ string.result <- atime::atime( ## default is to show closest larger and smaller references. plot(string.best) ## modifying plot.references changes violet references shown by plot. -string.best$plot.references <- string.best$ref[fun.name %in% c("N","N^2","N^3","2^N")] +string.best$plot.references <- string.best$ref[c("N","N^2","N^3","2^N"),on="fun.name"] plot(string.best) ## predict method computes N for given units (default seconds limit). string.pred = predict(string.best)