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)