From d728b387aca7cc024d05ff8ef05235ee4184fa6d Mon Sep 17 00:00:00 2001 From: Ying Zhou Date: Wed, 11 Dec 2024 19:33:47 -0500 Subject: [PATCH] case study 07 upload --- week_07/CS_07_nocomments.R | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 week_07/CS_07_nocomments.R diff --git a/week_07/CS_07_nocomments.R b/week_07/CS_07_nocomments.R new file mode 100644 index 0000000..cf23c9f --- /dev/null +++ b/week_07/CS_07_nocomments.R @@ -0,0 +1,11 @@ +library(tidyverse) +library(reprex) +library(sf) + +library(spData) +data(world) + + + +ggplot(world,aes(x=gdpPercap, y=continent, color=continent))+ + geom_density(alpha=0.5,color=F)