plot

Heyy you

Blog Post This is a blog post about Star Wars. You can see how many characters have green eyes or your eye color. starwars %>% select(eye_color, height) %>% group_by(eye_color) %>% ggplot( aes(x= height, y= eye_color) )+ geom_point(size=3, alpha=0.4, color='black')+ labs(title = 'Star Wars Data, eye color and height', y='eye color')+ theme( text = element_text(size = 12, family = 'Lato'), axis.text.y = element_text(size = 12, face = 'bold') ) Cars Data summary(cars) ## speed dist ## Min.