|
step_nr
|
The in-game number of a given move. A step means the flipping of two pictures.
|
|
cards_left
|
The number of the pictures at a given step, which have not been found.
The variable describes a distinct pictures, not pairs; it's value always an even number.
|
|
cards_found
|
The number of the pictures, which have been found by the player. The variable describes a
distinct picture, not a pair; it's value always an even number.
|
|
cards_found_ratio
|
The ratio calculated between the pictures, which have found and the full
number of the pictures:
pictures found / all pictures * 100
|
|
time_elapsed_cumulative
|
The time elapsed since the start of the game at the given step (the cumulative sum
of the length of the steps) in milliseconds.
|
|
step_lengths
|
The length of a given step in milliseconds. The difference between the time at the first
click of the next step and the time of the first click at the actual step.
At the last step: the difference between the time of the second step and the first
step of the actual step (the time since 1st of January 1970 in milliseconds)
|
|
found_in_last_5
|
The number of pairs found at the current step and at the previous 4 steps. It is also
calculated before the 5th step. In this case the variable's value can't be higher than the
step number. It can be an even or an odd number.
|
|
found_in_last_10
|
The number of pairs found at the current step and at the previous 9 steps. It is also
calculated before the 10th step. In this case the variable's value can't be higher than the
step number. It can be an even or an odd number.
|
|
cards_discovered_num
|
The number of those cards, on which are clicked at least one time in a game. Every position
is counted; each picture represented twice in this variable.
|
|
cards_discovered_ratio
|
The ratio of number of the discovered cards (card_discovered_num) and the number of all
cards at the board (cards_discovered_num / all cards).
|
|
steps_passed_ratio
|
The ratio of the given step and the all cards at the board (step_nr / all cards).
|
|
time_passed_ratio
|
The ratio of the time spent till the end of a given step and the full length of the
game.
|
|
table_size
|
The number of the rows and columns of the board in the following format: rowsXcolumns
For example: 6x10; a table, which contains 6 rows and 10 columns.
|
|
time_to_memorize
|
The variable tells how long the pictures were shown to the player before the game started.
It's value can be 0, 3, 5 and 7 seconds.
|
|
is_finished
|
The variable's value is True when all the pairs were found in the given game.
Otherwise the value is False.
|
|
avg_image_clicked
|
The average number of clicks at an image in a game (all two pictures are included).
|
|
avg_time_seen
|
The average time the image is shown during a game (milliseconds). If the player first clicked
to the image at a step, the whole length of the step is added to the average. When it is the
second click on the image, the time elapsed between the second click of the current step and
the first click of the next step is added to the average.
|
|
avg_turn_when_found
|
The average step number when the picture is found.
|
|
avg_time_elapsed_when_found
|
The average time elapsed between the start of the game and the finding of the picture.
|