# excel file
data <- read_excel("C:/Users/jessi/OneDrive - USNH/PSU_DAT3000_IntroToDa/01_module4/data/My Data_charts.xlsx",
sheet = "Total Employed by State")
data
Are the total number of artists in the U.S. higher in states that contain large cities?
ggplot(data = data) +
geom_bar(mapping = aes(x = STATE, y= ARTISTS), stat = "identity") +
coord_flip() +
theme(
axis.text.x = element_blank(),
axis.ticks.x = element_blank()
)
According to the data presented, it appears that the relationship between states with large cities have more artists employed.