Michelle Manning

Intro for me.

Michelle Manning
08-10-2021
library(dslabs)
data("gapminder")
library(dplyr)
library(ggplot2)
gapminder %>% 
  select(continent, region, gdp, population) %>%
  mutate(gdp_per_capita = gdp / population) %>% 
  arrange(desc(gdp_per_capita)) %>%
  ggplot(aes(x=gdp_per_capita)) + 
  geom_histogram(binwidth = 30)

Distill is a publication format for scientific and technical writing, native to the web.

Learn more about using Distill at https://rstudio.github.io/distill.

Reuse

Text and figures are licensed under Creative Commons Attribution CC BY-NC 4.0. The figures that have been reused from other sources don't fall under this license and can be recognized by a note in their caption: "Figure from ...".

Citation

For attribution, please cite this work as

Manning (2021, Aug. 10). DACSS 601 August 2021: Michelle Manning. Retrieved from https://mrolfe.github.io/DACSS601August2021/posts/2021-08-10-michelle-manning/

BibTeX citation

@misc{manning2021michelle,
  author = {Manning, Michelle},
  title = {DACSS 601 August 2021: Michelle Manning},
  url = {https://mrolfe.github.io/DACSS601August2021/posts/2021-08-10-michelle-manning/},
  year = {2021}
}