I want to change the color of bar and condition is score below 60. Where do I set my condition,and color it? Thanks for helping.
set.seed(123)
df = data.frame(Student = sample(state.name, 10), score = sample(1:100, 10, replace=T))
ggplot(df, aes(Student, score)) +
geom_bar(stat='identity')+
labs(x = "Student_name" , y = "math_score")


