Skip to content
Snippets Groups Projects
Commit 5814269c authored by Oliver Müller's avatar Oliver Müller
Browse files

update "your task"

parent c1885e2f
No related branches found
No related tags found
No related merge requests found
......@@ -238,7 +238,7 @@ ggplot(data=flights_all) +
```
Similarily, we can plot a bar chart for the number of flights by `carrier`. Note that the bars are not ordered by frequency, but alphabetically.
Similarly, we can plot a bar chart for the number of flights by `carrier`. Note that the bars are not ordered by frequency, but alphabetically.
```{r}
ggplot(data=flights_all) +
......@@ -292,10 +292,6 @@ ggplot(data=flights_all) +
```{r}
# YOUR CODE GOES HERE
ggplot(data = flights_all) +
geom_histogram(mapping = aes(x=dep_delay)) +
scale_x_log10() +
facet_wrap(~month_name, ncol=3)
```
......@@ -319,9 +315,6 @@ ggplot(flights_all) +
```{r}
# YOUR CODE GOES HERE
ggplot(data=flights_all) +
geom_density_ridges_gradient(mapping=aes(x = fahrenheit.to.celsius(temp), y = fct_rev(month_name), fill = stat(x))) +
scale_fill_viridis_c(option="C")
```
......@@ -345,8 +338,6 @@ ggplot(data=flights_all) +
```{r}
# YOUR CODE GOES HERE
ggplot(data = flights_all) +
geom_boxplot(mapping = aes(x=carrier, y=distance))
```
......
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