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 = 1267 and player_2_id = 75
    
    ✎ View and edit SQL
This data as json, copyable, CSV (advanced)
    
        
            
                
                    | 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,1668106148.9630013 | exp_2022_11_10_10 | 74 | 75 | lion | tiger | 1668106148.9630013 | 2022-11-10T18:49:08.963001+00:00 | 1 | 107 | 1267 | 955 | 880 | 850 | 1660 | 581 | 0 | 1 | 
        
            
                
                    | exp_2022_11_10_10,74,75,lion,tiger,1668106160.0317037 | exp_2022_11_10_10 | 74 | 75 | lion | tiger | 1668106160.0317037 | 2022-11-10T18:49:20.031704+00:00 | 1 | 96 | 1267 | 527 | 880 | 725 | 1660 | 490 | 3 | 2 | 
        
            
                
                    | exp_2022_11_10_10,74,75,lion,tiger,1668106209.04656 | exp_2022_11_10_10 | 74 | 75 | lion | tiger | 1668106209.04656 | 2022-11-10T18:50:09.046560+00:00 | 1 | 47 | 1267 | 631 | 880 | 583 | 1660 | 850 | 6 | 5 | 
        
            
                
                    | exp_2022_11_10_10,74,75,lion,tiger,1668106217.3062036 | exp_2022_11_10_10 | 74 | 75 | lion | tiger | 1668106217.3062036 | 2022-11-10T18:50:17.306204+00:00 | 1 | 39 | 1267 | 953 | 880 | 816 | 1660 | 560 | 7 | 6 | 
        
        
    
 
    
    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])
);