From f2d66142039374c6b7ecf6bcd3fd9c5ec77ff5be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Moacir=20P=2E=20de=20Sa=CC=81=20Pereira?= Date: Thu, 21 Nov 2024 00:03:58 -0500 Subject: [PATCH] feat: convert hyphens to en dashes. --- index.qmd | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/index.qmd b/index.qmd index 5642d6c..d917490 100644 --- a/index.qmd +++ b/index.qmd @@ -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() @@ -59,7 +59,7 @@ 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() @@ -67,4 +67,4 @@ df_day |> 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. \ No newline at end of file +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.