Description Usage Format Examples
Grades on three exams and overall course grade for 233 students during several years for a statistics course at a university.
1 |
A data frame with 233 observations, each representing a student.
Semester when grades were recorded.
Sex of the student as recorded on the university registration system: Man or Woman.
Exam 1 grade.
Exam 2 grade.
Exam 3 grade.
Overall course grade.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | library(ggplot2)
library(dplyr)
# Course grade vs. each exam
ggplot(exam_grades, aes(x = exam1, y = course_grade)) +
geom_point()
ggplot(exam_grades, aes(x = exam2, y = course_grade)) +
geom_point()
ggplot(exam_grades, aes(x = exam2, y = course_grade)) +
geom_point()
# Semester averages
exam_grades %>%
group_by(semester) %>%
summarise(across(exam1:course_grade, mean, na.rm = TRUE))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.