Introduction Publishing

Author

Bridget Santacroce

Intro Publishing Assignment

This assignment looks at the count of the name Bridget in the state of North Carolina over a period of time.

{r} library(babynames) library(tidyverse)

library(readr) NationalNames <- read_csv(“NationalNames.csv”) View(NationalNames)

library(readr) StateNames <- read_csv(“StateNames.csv”) View(StateNames)

colnames(StateNames)

StateNames |> filter(Name == “Bridget”, State == “NC”) |> ggplot(aes(Year, Count)) + geom_line()