Tutorial of Data Conversion Module

Data Conversion Module has the functions to convert EventStream into other representations.
The functions receive the instance of EventStream and return the other representation classes.
The classes have the method functions to get the information like EventStream.
../_images/conversion_example.png
The functions in below table are available now.
The documentation is in Data Conversion Module Document

function

description

convert_into_operation_count

Convert event stream into how many times each learner used each operation in each content.

convert_into_page_transition


Convert into how long each learner read each page and how many times each learner used each operation in the page.
The aggregation is conducted at every page transition (read back, page jump, etc.).

convert_into_page_wise


Convert into how long each learner read each page and how many times each learner used each operation in the page.
The aggregation shows the total value in each page.

convert_into_time_range

Convert event stream into what page read longest and how many times each learner used each operation in specific time intervals.

Tutorial of converted classes

Example