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
Average percentage of videos watched per user per course
avg_time_watched
float
Average time spent per learner
Example
fromiblai.models.video_engagement_per_course_dataimportVideoEngagementPerCourseData# TODO update the JSON string belowjson="{}"# create an instance of VideoEngagementPerCourseData from a JSON stringvideo_engagement_per_course_data_instance=VideoEngagementPerCourseData.from_json(json)
# print the JSON string representation of the objectprint(VideoEngagementPerCourseData.to_json())
# convert the object into a dictvideo_engagement_per_course_data_dict=video_engagement_per_course_data_instance.to_dict()
# create an instance of VideoEngagementPerCourseData from a dictvideo_engagement_per_course_data_from_dict=VideoEngagementPerCourseData.from_dict(video_engagement_per_course_data_dict)