Here is my code:
pokemon <- read_csv("https://uwmadison.box.com/shared/static/hf5cmx3ew3ch0v6t0c2x56838er1lt2c.csv")
pokemon %>%
select(Name, type_1, Attack, Defense) %>%
mutate(AttDefRatio = Attack/Defense) %>%
ggplot(
aes(Name, AttDefRatio)
) +
geom_point(size = 0.5) +
facet_wrap(type_1 ~ .) +
theme(legend.position = "bottom")
for this home work assignment we are working with faceting, and everything pretty much looks how it should, but there those two thick lines at the bottom of the plot. If anyone has any idea why its happening that would be awesome!


