From 7fcb665df737caff1851b40389df018186252e12 Mon Sep 17 00:00:00 2001 From: Victor Andersson Date: Tue, 4 Nov 2025 10:03:08 +0100 Subject: [PATCH] lektion 1 --- lektion1/Lektion_1.qmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lektion1/Lektion_1.qmd b/lektion1/Lektion_1.qmd index 35b6222..3faa1d2 100644 --- a/lektion1/Lektion_1.qmd +++ b/lektion1/Lektion_1.qmd @@ -192,7 +192,7 @@ bike %>% select(member) %>% summary() ggplot(bike) + aes(x = season, y = total) + - geom_col(fill = "#112446") + + geom_boxplot(fill = "#112446") + theme_minimal() ```