luispintoc / Linking-Writing

https://www.kaggle.com/competitions/linking-writing-processes-to-writing-quality/overview
Apache License 2.0
0 stars 0 forks source link

Pause #3

Closed lucselmes closed 9 months ago

lucselmes commented 11 months ago

Pauses are generally defined as inter-keystroke intervals (IKI) above a certain threshold (e.g., 2000 milliseconds). The IKI refers to the gap time between two consecutive key presses typically expressed in milliseconds. To illustrate, suppose a writer types a character "A" at time 1 and then a character "B" at time 2. One can obtain the IKI between the two characters simply using the formula: IKI = Time2 - Time1. Global measures of pausing are usually associated with the duration and frequency of pauses calculated from different dimensions. Below are some typical pause measures.

luispintoc commented 10 months ago

Done:

Number of Pauses Define a pause as a period of time between the up_time of one event and the down_time of the following event that is greater than 2000 ms

Proportion of Pause time (as % of total writing time)

Mean Pause Length

luispintoc commented 9 months ago

Done