Skip to content

Commit

Permalink
feat: convert hyphens to en dashes.
Browse files Browse the repository at this point in the history
  • Loading branch information
muziejus committed Nov 21, 2024
1 parent 485e220 commit f2d6614
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions index.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ df_day |>
geom_line(color="cornflowerblue") +
scale_x_date(date_labels = "%b %Y", date_breaks = "1 year") +
scale_y_continuous(labels = comma) +
labs(title="Average daily taxi trips per week, January 2019 - June 2024",
labs(title="Average daily taxi trips per week, January 2019 June 2024",
x = "Date",
y = "Average number of trips in a day") +
theme_classic()
Expand All @@ -59,12 +59,12 @@ df_day |>
geom_line(color="cornflowerblue") +
geom_hline(yintercept=0)+
scale_x_date(date_labels = "%b %Y", date_breaks = "1 year") +
labs(title="Average weekly temp, January 2019 - June 2024",
labs(title="Average weekly temp, January 2019 June 2024",
x = "Date",
y = "Tempurature (Celsius)") +
theme_classic()
```

Average weekly temperature looks fairly consistent over time, with expected seasonal peaks and valleys across the year. There may be a subtle trend of slightly higher average temperatures in more recent years, but nothing too definitive.

As just one data point, temperature provides a limited slice into what may distinguish a "nice day." In the next chapter, we will see that it will be necessary to calculate additional numeric and categorical weather measurements to help establish this definition. Ideas include change in temperature and a simple categorical variable for cloud cover derived from the multiple columns currently devoted to cloud cover.
As just one data point, temperature provides a limited slice into what may distinguish a "nice day." In the next chapter, we will see that it will be necessary to calculate additional numeric and categorical weather measurements to help establish this definition. Ideas include change in temperature and a simple categorical variable for cloud cover derived from the multiple columns currently devoted to cloud cover.

0 comments on commit f2d6614

Please sign in to comment.