Changed readme and stuff

This commit is contained in:
Victor Andersson
2025-11-04 11:41:37 +01:00
parent 7fcb665df7
commit 76c4f4d4fe
2 changed files with 18 additions and 0 deletions

View File

@@ -191,6 +191,7 @@ bike %>% select(member) %>% summary()
### Klistra in koden från ggplot builder nedan
ggplot(bike) +
ggtitle("Antal uthyrning per sässong") +
aes(x = season, y = total) +
geom_boxplot(fill = "#112446") +
theme_minimal()
@@ -237,8 +238,10 @@ Jag får extra pressision med 1 decimal?
```{r rentals vs temp}
ggplot(bike) +
ggtitle("Rentals per temperatur") +
aes(x = tempC, y = total) +
geom_point(colour = "#00CC00") +
geom_smooth(se = FALSE) +
theme_minimal()
```