You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ggplot(studentinfo) + geom_bar(aes(x=students$highest_education, fill=students$highest_education)) + labs(title = "Students in each education lever per semester", fill = "Education", x="Modules", y="Amount of students") + facet_wrap(~ students$code_presentation)+
ggplot(students) + geom_bar(aes(x=students$code_presentation, fill=students$code_presentation)) + labs(title = "the number of student in different presentation", fill = "presentation", x="presentation", y="Amount of students")