Column descriptions

group_session
The group session ID.
player_1_id
Player 1's participant ID
player_2_id
Player 2's participant ID
player_1_station
Player 1's station.
player_2_station
Player 2's station.
timestamp_unix
Unix timestamp of the observation
timestamp_iso8601
ISO-8601 timestamp of the observation.
task_started
Whether the task has started (1) or not (0).
seconds
The number of seconds left in the game (not shown to participants).
ball_position_x
The x-coordinate of the ball.
ball_position_y
The y-coordinate of the ball.
player_1_paddle_position_x
The x-coordinate of the pixel at the top left corner of player 1's paddle.
player_1_paddle_position_y
The y-coordinate of the pixel at the top left corner of player 1's paddle.
player_2_paddle_position_x
The x-coordinate of the pixel at the top left corner of player 2's paddle.
player_2_paddle_position_y
The y-coordinate of the pixel at the top left corner of player 2's paddle.
player_1_score
Player 1's score.
player_2_score
Player 2's score.

where ball_position_x = 1373 and player_2_id = 75

View and edit SQL

Link group_session player_1_id player_2_id player_1_station player_2_station timestamp_unix timestamp_iso8601 task_started seconds ball_position_x ball_position_y player_1_paddle_position_x player_1_paddle_position_y player_2_paddle_position_x player_2_paddle_position_y player_1_score player_2_score
exp_2022_11_10_10 74 75 lion tiger 1668106150.2131398 2022-11-10T18:49:10.213140+00:00 1 106 1373 655 880 818 1660 569 1 1
exp_2022_11_10_10 74 75 lion tiger 1668106152.9812214 2022-11-10T18:49:12.981221+00:00 1 103 1373 865 880 834 1660 470 2 1
exp_2022_11_10_10 74 75 lion tiger 1668106155.7432728 2022-11-10T18:49:15.743273+00:00 1 100 1373 941 880 827 1660 552 3 1
exp_2022_11_10_10 74 75 lion tiger 1668106191.1485233 2022-11-10T18:49:51.148523+00:00 1 65 1373 805 880 643 1660 609 5 3
exp_2022_11_10_10 74 75 lion tiger 1668106204.7189825 2022-11-10T18:50:04.718982+00:00 1 51 1373 927 880 650 1660 819 6 3
exp_2022_11_10_10 74 75 lion tiger 1668106221.260513 2022-11-10T18:50:21.260513+00:00 1 35 1373 575 880 476 1660 675 8 6
exp_2022_11_10_10 74 75 lion tiger 1668106229.480761 2022-11-10T18:50:29.480761+00:00 1 26 1373 854 880 663 1660 764 9 7
exp_2022_11_10_10 74 75 lion tiger 1668106243.08969 2022-11-10T18:50:43.089690+00:00 1 13 1373 581 880 684 1660 470 11 7
exp_2022_11_10_10 74 75 lion tiger 1668106251.3078063 2022-11-10T18:50:51.307806+00:00 1 5 1373 930 880 653 1660 756 13 7

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

CREATE TABLE "ping_pong_competitive_task_observation" (
   [group_session] TEXT REFERENCES [group_session]([id]),
   [player_1_id] INTEGER REFERENCES [participant]([id]),
   [player_2_id] INTEGER REFERENCES [participant]([id]),
   [player_1_station] TEXT REFERENCES [station]([id]),
   [player_2_station] TEXT REFERENCES [station]([id]),
   [timestamp_unix] TEXT,
   [timestamp_iso8601] TEXT,
   [task_started] INTEGER,
   [seconds] INTEGER,
   [ball_position_x] INTEGER,
   [ball_position_y] INTEGER,
   [player_1_paddle_position_x] INTEGER,
   [player_1_paddle_position_y] INTEGER,
   [player_2_paddle_position_x] INTEGER,
   [player_2_paddle_position_y] INTEGER,
   [player_1_score] INTEGER,
   [player_2_score] INTEGER,
   PRIMARY KEY ([group_session], [player_1_id], [player_2_id], [player_1_station], [player_2_station], [timestamp_unix])
);