Skip to content

Commit 75eef09

Browse files
committed
light linting
1 parent 0445bb0 commit 75eef09

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

exercises/03-ci-with-group-by-and-summarise-exercises.qmd

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,11 @@ sim2 <- tibble(
7272
sim2 |>
7373
group_by(_____, _____, _____) |>
7474
summarise(avg_y = mean(_____)) |>
75-
pivot_wider(names_from = exposure,
76-
values_from = avg_y,
77-
names_prefix = "x_") |>
75+
pivot_wider(
76+
names_from = exposure,
77+
values_from = avg_y,
78+
names_prefix = "x_"
79+
) |>
7880
summarise(estimate = x_1 - x_0, .groups = "drop") |>
7981
summarise(estimate = mean(estimate))
8082
```

0 commit comments

Comments
 (0)