Skip to content

Commit

Permalink
use on instead of in
Browse files Browse the repository at this point in the history
  • Loading branch information
Toby Dylan Hocking committed Aug 7, 2024
1 parent 451b905 commit 8503eea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion man/references_best.Rd
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 8503eea

Please sign in to comment.