Skip to content

Commit

Permalink
Merge pull request #108 from pharmaverse/bug/individual-plots-grouping
Browse files Browse the repository at this point in the history
fix: testing sample data fixed
  • Loading branch information
js3110 authored Nov 11, 2024
2 parents fdf0454 + a084cf9 commit 04adf81
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion tests/testthat/test-general_lineplot.R
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,12 @@ sample_data <- data.frame(
NRRLT = rep(1:6, 4),
ARRLT = rep(1:6, 4),
ARRLT = rep(1:6, 4),
AVAL = runif(24, 1, 100),
AVAL = c(
10, 20, 30, 40, 50, 60,
15, 25, 35, 45, 55, 65,
12, 22, 32, 42, 52, 62,
18, 28, 38, 48, 58, 68
),
RRLTU = rep("hours", 24),
AVALU = rep("ng/mL", 24),
DOSEA = rep(35, 24)
Expand Down

0 comments on commit 04adf81

Please sign in to comment.