Skip to content

Commit 05191eb

Browse files
Merge pull request #297 from itsleeds/harrysroberts-patch-1
Minor fixes in s4
2 parents f87d358 + 366bf41 commit 05191eb

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

s4/index.qmd

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,6 @@ Next we will made a new dataset `od_data_walk` by taking `od_data` and piping it
296296

297297
## R
298298
```{r}
299-
300299
#| echo: true
301300
od_data_walk = od_data |>
302301
filter(walk > 0) |>
@@ -834,7 +833,7 @@ bike_trips |>
834833
group_by(date, hour) |>
835834
summarise(count = n()) |>
836835
ggplot() +
837-
geom_line(aes(x = hour, y = count, color = date, group = date), size = 1, alpha = .6) +
836+
geom_line(aes(x = hour, y = count, color = date, group = date), linewidth = 1, alpha = .6) +
838837
geom_point(aes(x = hour, y = count, color = date), size = 2) +
839838
scale_x_continuous(breaks = seq(0, 23, by = 4))
840839
```

0 commit comments

Comments
 (0)