Home Reference Source

scripts/experiment-properties/data/constants/visual_search_data.js

export {VISUAL_SEARCH_BASE, VISUAL_SEARCH_CONDITIONS};

const VISUAL_SEARCH_BASE = {

  foundational:
    [
        {distribution_type: "random", row: 36, col: 36, num_points: 10, alternate_scaling: true, target_color: 'BLUE', point_color: 'BLACK', axis_color: 'WHITE', text_color: 'BLACK', background_color: 'WHITE', point_size: 8, text_color: 'BLACK'},
    
        {distribution_type: "random", row: 36, col: 36, num_points: 10, alternate_scaling: true, target_color: 'BLUE', point_color: 'BLACK', axis_color: 'WHITE', text_color: 'BLACK', background_color: 'WHITE', point_size: 8, text_color: 'BLACK'},

        {distribution_type: "random", row: 36, col: 36, num_points: 10, alternate_scaling: true, target_color: 'BLUE', point_color: 'BLACK', axis_color: 'WHITE', text_color: 'BLACK', background_color: 'WHITE', point_size: 8, text_color: 'BLACK'},

        {distribution_type: "random", row: 36, col: 36, num_points: 10, alternate_scaling: true, target_color: 'BLUE', point_color: 'BLACK', axis_color: 'WHITE', text_color: 'BLACK', background_color: 'WHITE', point_size: 8, text_color: 'BLACK'},
    ] 
}

const VISUAL_SEARCH_CONDITIONS = {

    vs_blue_squares:
    [
        {target_color: 'BLUE', target_present: false, point_shape: "square", mix_by_attribute_targeted: {point_color: ["#007ebc", "#43a4e6"], num_target: 0}},

        {target_color: 'BLUE', target_present: true, point_shape: "square", mix_by_attribute_targeted: {point_color: ["#007ebc", "#005a95"], num_target: 2}},

        {target_color: 'BLUE', target_present: true, point_shape: "square", mix_by_attribute_targeted: {point_color: ["#007ebc", "#43a4e6"], num_target: 1}},

        {target_color: 'BLUE', target_present: false, point_shape: "square", mix_by_attribute_targeted: {point_color: ["#007ebc", "#005a95"], num_target: 0}},
    ]
}