Column descriptions
    
        - group_session
- Group session ID
- participant
- Participant ID
- station
- The iMac that the participant was stationed at.
- task
- Task ID.
- modality
- The modality of the data.
- is_valid
- Whether the data for the relevant participant/task/modality is valid (1) or invalid (0).
        where participant = 146
    
    ✎ View and edit SQL
This data as json, copyable, CSV (advanced)
    
    Suggested facets: task, modality
    
        
            
                
                    | Link | group_session | participant | station | task | modality | is_valid | 
        
        
        
            
                
                    | exp_2023_04_21_10,146,leopard,affective_individual,eeg,1 | exp_2023_04_21_10 | 146 | leopard | affective_individual | eeg | 1 | 
        
            
                
                    | exp_2023_04_21_10,146,leopard,affective_individual,fnirs,1 | exp_2023_04_21_10 | 146 | leopard | affective_individual | fnirs | 1 | 
        
            
                
                    | exp_2023_04_21_10,146,leopard,affective_individual,gaze,1 | exp_2023_04_21_10 | 146 | leopard | affective_individual | gaze | 1 | 
        
            
                
                    | exp_2023_04_21_10,146,leopard,affective_team,eeg,1 | exp_2023_04_21_10 | 146 | leopard | affective_team | eeg | 1 | 
        
            
                
                    | exp_2023_04_21_10,146,leopard,affective_team,fnirs,1 | exp_2023_04_21_10 | 146 | leopard | affective_team | fnirs | 1 | 
        
            
                
                    | exp_2023_04_21_10,146,leopard,affective_team,gaze,1 | exp_2023_04_21_10 | 146 | leopard | affective_team | gaze | 1 | 
        
            
                
                    | exp_2023_04_21_10,146,leopard,finger_tapping,eeg,1 | exp_2023_04_21_10 | 146 | leopard | finger_tapping | eeg | 1 | 
        
            
                
                    | exp_2023_04_21_10,146,leopard,finger_tapping,fnirs,1 | exp_2023_04_21_10 | 146 | leopard | finger_tapping | fnirs | 1 | 
        
            
                
                    | exp_2023_04_21_10,146,leopard,finger_tapping,gaze,1 | exp_2023_04_21_10 | 146 | leopard | finger_tapping | gaze | 1 | 
        
            
                
                    | exp_2023_04_21_10,146,leopard,hands_on_training,eeg,1 | exp_2023_04_21_10 | 146 | leopard | hands_on_training | eeg | 1 | 
        
            
                
                    | exp_2023_04_21_10,146,leopard,hands_on_training,fnirs,1 | exp_2023_04_21_10 | 146 | leopard | hands_on_training | fnirs | 1 | 
        
            
                
                    | exp_2023_04_21_10,146,leopard,hands_on_training,gaze,1 | exp_2023_04_21_10 | 146 | leopard | hands_on_training | gaze | 1 | 
        
            
                
                    | exp_2023_04_21_10,146,leopard,ping_pong_competitive,eeg,1 | exp_2023_04_21_10 | 146 | leopard | ping_pong_competitive | eeg | 1 | 
        
            
                
                    | exp_2023_04_21_10,146,leopard,ping_pong_competitive,fnirs,1 | exp_2023_04_21_10 | 146 | leopard | ping_pong_competitive | fnirs | 1 | 
        
            
                
                    | exp_2023_04_21_10,146,leopard,ping_pong_competitive,gaze,1 | exp_2023_04_21_10 | 146 | leopard | ping_pong_competitive | gaze | 1 | 
        
            
                
                    | exp_2023_04_21_10,146,leopard,ping_pong_cooperative,eeg,1 | exp_2023_04_21_10 | 146 | leopard | ping_pong_cooperative | eeg | 1 | 
        
            
                
                    | exp_2023_04_21_10,146,leopard,ping_pong_cooperative,fnirs,1 | exp_2023_04_21_10 | 146 | leopard | ping_pong_cooperative | fnirs | 1 | 
        
            
                
                    | exp_2023_04_21_10,146,leopard,ping_pong_cooperative,gaze,1 | exp_2023_04_21_10 | 146 | leopard | ping_pong_cooperative | gaze | 1 | 
        
            
                
                    | exp_2023_04_21_10,146,leopard,rest_state,eeg,1 | exp_2023_04_21_10 | 146 | leopard | rest_state | eeg | 1 | 
        
            
                
                    | exp_2023_04_21_10,146,leopard,rest_state,fnirs,1 | exp_2023_04_21_10 | 146 | leopard | rest_state | fnirs | 1 | 
        
            
                
                    | exp_2023_04_21_10,146,leopard,rest_state,gaze,1 | exp_2023_04_21_10 | 146 | leopard | rest_state | gaze | 1 | 
        
            
                
                    | exp_2023_04_21_10,146,leopard,saturn_a,eeg,1 | exp_2023_04_21_10 | 146 | leopard | saturn_a | eeg | 1 | 
        
            
                
                    | exp_2023_04_21_10,146,leopard,saturn_a,fnirs,1 | exp_2023_04_21_10 | 146 | leopard | saturn_a | fnirs | 1 | 
        
            
                
                    | exp_2023_04_21_10,146,leopard,saturn_a,gaze,1 | exp_2023_04_21_10 | 146 | leopard | saturn_a | gaze | 1 | 
        
        
    
 
    
    CREATE TABLE "data_validity" (
   [group_session] TEXT REFERENCES [group_session]([id]),
   [participant] INTEGER REFERENCES [participant]([id]),
   [station] TEXT REFERENCES [station]([id]),
   [task] TEXT REFERENCES [task]([id]),
   [modality] TEXT REFERENCES [modality]([id]),
   [is_valid] INTEGER,
   PRIMARY KEY ([group_session], [participant], [station], [task], [modality], [is_valid])
);