Skip to content
Snippets Groups Projects
Verified Commit bc19eac5 authored by Laurent Modolo's avatar Laurent Modolo
Browse files

session_5: fix typo line 235

parent f70bab4c
No related branches found
No related tags found
No related merge requests found
...@@ -232,7 +232,7 @@ Look at the number of canceled flights per day. Is there a pattern? ...@@ -232,7 +232,7 @@ Look at the number of canceled flights per day. Is there a pattern?
**Remember to always try to decompose complex questions into smaller and simple problems** **Remember to always try to decompose complex questions into smaller and simple problems**
- What are `canceled` flights? - What are `canceled` flights?
- Who can I `canceled` flights? - Who can I create a `canceled` flights variable?
- We need to define the day of the week `wday` variable (`strftime(x,'%A')` give you the name of the day from a POSIXct date). - We need to define the day of the week `wday` variable (`strftime(x,'%A')` give you the name of the day from a POSIXct date).
- We can count the number of canceled flight (`cancel_day`) by day of the week (`wday`). - We can count the number of canceled flight (`cancel_day`) by day of the week (`wday`).
- We can pipe transformed and filtered tibble into a `ggplot` function. - We can pipe transformed and filtered tibble into a `ggplot` function.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment