Skip to content

Commit aa727f5

Browse files
authored
Merge pull request #16 from renaissance-benchmarks/fix/relative-baseline
Fix baseline selection in relative interval computation
2 parents b303a2d + a610c0b commit aa727f5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

DESCRIPTION

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: rren
22
Title: Renaissance Benchmark Data Processing Package
3-
Version: 0.1.0
3+
Version: 0.1.1
44
Authors@R:
55
person ("Petr", "Tuma", email = "petr.tuma@d3s.mff.cuni.cz", role = c ("aut", "cre"), comment = c (ORCID = "0000-0002-7035-2322"))
66
Description: A utility package for processing the data produced by the Renaissance benchmark suite (https://renaissance.dev).
@@ -9,7 +9,7 @@ BugReports: https://github.com/renaissance-benchmarks/utilities-r/issues
99
License: Apache License (>= 2)
1010
Encoding: UTF-8
1111
Roxygen: list (markdown = TRUE)
12-
RoxygenNote: 7.2.3
12+
RoxygenNote: 7.3.2
1313
Suggests:
1414
testthat (>= 3.1.8)
1515
Config/testthat/edition: 3

R/interval.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ compute_hierarchical_relative_percentile_ci <- function (.input, .baseline, .col
235235
baseline_for_benchmark <- function (benchmark) {
236236
force (benchmark)
237237
baseline <- baseline_for_vm |> filter (.data $ benchmark == .env $ benchmark)
238-
return (split (baseline_for_vm |> pull ({{ .column }}), baseline_for_vm $ run, drop = TRUE))
238+
return (split (baseline |> pull ({{ .column }}), baseline $ run, drop = TRUE))
239239
}
240240

241241
.input |>

0 commit comments

Comments
 (0)