SDO Widget v7 - nodeGame/nodegame GitHub Wiki

  • status : complete
  • version : 7.x

Illustration

Illustration of the SDO widget

Introduction

The SDO (Social Dominance Orientation) is a set of questions aimed at measuring the preference of a person for groups and hierarchies.

References

  • Ho et al. (2015). "The nature of social dominance orientation: Theorizing and measuring preferences for intergroup inequality using the new SDO₇ scale". Journal of Personality and Social Psychology. 109 (6): 1003–1028.

  • Sidanius and Pratto (1999). Social Dominance: An Intergroup Theory of Social Hierarchy and Oppression. Cambridge: Cambridge University Press.

Main Options

  • scale: The type of questions to ask. Values: 'SDO7', 'SDO16', 'SDO7s' (default).
  • choices An array of numeric choices. Default (1,2,3,4,5,6,7).

Usecase

// Option 1: Manual append in page.

// Append a new SDO widget to an element ID "root" (must exist).
// The optional scale 'SDA16' is selected.
// A reference is returned and stored in variable sdo.
var sdo = node.widgets.append('SDO', 'root', { scale: 'SDO16' });

// Get current values.
sdo.getValues();

// Option 2: Widget Step.

// The optional scale 'SDA16' is selected.

stager.extendStep('gm', {
    widget: 'SDO',
    options: {
        scale: 'SDO16'
    }
});

Links

⚠️ **GitHub.com Fallback** ⚠️