Skip to content

Commit

Permalink
update snapshots
Browse files Browse the repository at this point in the history
  • Loading branch information
strengejacke committed May 24, 2024
1 parent 2f87655 commit 56f7793
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions tests/testthat/_snaps/windows/report_sample.md
Original file line number Diff line number Diff line change
Expand Up @@ -180,10 +180,10 @@
-------------------------
x [1], % | 2.9 [2.0, 4.2]

# report_sample group_by
# report_sample by

Code
report_sample(airquality, group_by = "Month")
report_sample(airquality, by = "Month")
Output
# Descriptive Statistics
Expand All @@ -198,7 +198,7 @@
---

Code
report_sample(mtcars, group_by = "cyl")
report_sample(mtcars, by = "cyl")
Output
# Descriptive Statistics
Expand All @@ -218,7 +218,7 @@
---

Code
report_sample(iris, group_by = "Species")
report_sample(iris, by = "Species")
Output
# Descriptive Statistics
Expand Down Expand Up @@ -456,7 +456,7 @@
---

Code
report_sample(airquality, group_by = "Month", total = TRUE)
report_sample(airquality, by = "Month", total = TRUE)
Output
# Descriptive Statistics
Expand All @@ -471,7 +471,7 @@
---

Code
report_sample(airquality, group_by = "Month", total = FALSE)
report_sample(airquality, by = "Month", total = FALSE)
Output
# Descriptive Statistics
Expand All @@ -486,7 +486,7 @@
---

Code
report_sample(airquality, group_by = "Month", total = FALSE, n = TRUE)
report_sample(airquality, by = "Month", total = FALSE, n = TRUE)
Output
# Descriptive Statistics
Expand All @@ -501,7 +501,7 @@
---

Code
report_sample(airquality, group_by = "Month", total = TRUE, n = TRUE)
report_sample(airquality, by = "Month", total = TRUE, n = TRUE)
Output
# Descriptive Statistics
Expand Down

0 comments on commit 56f7793

Please sign in to comment.