Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.29 KB

PerformanceGradesPerCourseData.md

File metadata and controls

33 lines (24 loc) · 1.29 KB

PerformanceGradesPerCourseData

Properties

Name Type Description Notes
name str Course name
course_id str Course id
num_enrollments int Course enrollments
num_passed int Total users who have passed the course
avg_grade float Course Average grade

Example

from iblai.models.performance_grades_per_course_data import PerformanceGradesPerCourseData

# TODO update the JSON string below
json = "{}"
# create an instance of PerformanceGradesPerCourseData from a JSON string
performance_grades_per_course_data_instance = PerformanceGradesPerCourseData.from_json(json)
# print the JSON string representation of the object
print(PerformanceGradesPerCourseData.to_json())

# convert the object into a dict
performance_grades_per_course_data_dict = performance_grades_per_course_data_instance.to_dict()
# create an instance of PerformanceGradesPerCourseData from a dict
performance_grades_per_course_data_from_dict = PerformanceGradesPerCourseData.from_dict(performance_grades_per_course_data_dict)

[Back to Model list] [Back to API list] [Back to README]