Create a data dictionary including variable name, variable description, variable type, measurement unit, and data source org. Variable name: totalStudentCount, totalHoursCompleted, avgHours, highGPA, highGPAStudentID, term, studentID, gpa, hoursCompleted.
Variable description: Total number of students, Total number of hours completed, Average number of hours completed per student, Highest grade point average, Student ID-code, Term, Student ID-code, Grade point average, Hours completed.
Here is a data dictionary based on the provided variable names and descriptions:
Variable Name | Variable Description | Variable Type | Measurement Unit | Data Source Org |
---|---|---|---|---|
totalStudentCount | Total number of students | Integer | Count | Academic Records |
totalHoursCompleted | Total number of hours completed | Integer | Hours | Academic Records |
avgHours | Average number of hours completed per student | Float | Hours | Academic Records |
highGPA | Highest grade point average | Float | GPA | Academic Records |
highGPAStudentID | Student ID of the student with the highest GPA | String | ID | Academic Records |
term | Academic term (e.g., Fall 2023, Spring 2024) | String | Term | Academic Records |
studentID | Unique identifier for each student | String | ID | Academic Records |
gpa | Grade point average of the student | Float | GPA | Academic Records |
hoursCompleted | Total hours completed by the student | Integer | Hours | Academic Records |