| Version 13 (modified by developer, 21 months ago) (diff) |
|---|
Grouping
ConG allows for complex configurations and population games.
- Every subject in ConG is assigned to a single group.
- Subjects have a "matched" group.
- The payoff function for a given subject uses as input:
- The strategy set of the subject's group.
- The strategy set of the "matched" group.
The computer will randomly assign groupings at the start of each period based on several config variables:
- groupSize - If set, groups are formed with N = groupSize individuals in each group. Note that this requires the number of subjects be evenly divisible by groupSize (e.g. a groupSize of 4 supports 4, 8, 12, etc. subjects, and will fail with 11 subjects).
- numGroups - As an alternative to groupSize one may choose a setting for numGroup. If set, N = numGroups are formed. For example, if 12 subjects are connected and N = 2, 2 groups of 6 subjects each will be created.
- Important Note - groupSize & numGroups may NEVER be used in the same period definition row For an example of how to set-up the config file correctly.
- matchType (either "self" or "pair").
- self - The "matched" group will be the same as the subject's group. This is used in (e.g.) a Public Goods game to have all subjects in a given group compete against the strategies (prices) in that group.
- pair - Matchings will be assigned in bi-directional pairs, for example group A matched with group B and group B matched with group A. This is used in (e.g.) the Hawk-Dove game to create 2 populations matched against each other.
Pairs (E.g. Prisoner's Dilemma)
In the config
Below is an html table abstraction of the portion of your CSV config file needed for the following grouping.
| ... | groupSize | matchType | ... |
| ... | 1 | pair | ... |
Mathematically
The payoff for player 1 is a function of player 1's group strategy set and player 6's group strategy set.
![$\pi_1(\{[s_2]\}, \{[s_3]\})$](http://leeps.ucsc.edu/cong/tracmath/f5c339826242886b3102ae42a4ba878f8581df4d.png)
Graphically
Single population (E.g. Public Goods)
In the config
Below is an html table abstraction of the portion of your CSV config file needed for the following grouping.
| ... | numGroups | matchType | ... |
| ... | 1 | self | ... |
Mathematically
The payoff for player 1 is a function of player 1's group strategy set.
![$\pi_1(\{[s_1, s_2, s_3, s_4, s_5, s_6]\})$](http://leeps.ucsc.edu/cong/tracmath/a8931a97ee12cb8b49410e2daaa72187f4c2fac8.png)
Graphically
Two Population (E.g. Hawk-Dove)
In the config
Below is an html table abstraction of the portion of your CSV config file needed for the following grouping.
| ... | numGroups | matchType | ... |
| ... | 2 | pair | ... |
Mathematically
The payoff for player 1 is a function of 2 group strategy sets.
![$\pi_1(\{[s_2, s_4, s_5]\}, \{[s_1, s_6, s_3]\})$](http://leeps.ucsc.edu/cong/tracmath/b6a37aa466ada4703120f829a0757a5e8b827dec.png)
Graphically
Attachments
-
pairs.png
(54.6 KB) -
added by developer 21 months ago.
6 subjects grouped in pairs.
-
singlepop.png
(43.6 KB) -
added by developer 21 months ago.
Single group with 6 subjects.
-
twopop.png
(49.3 KB) -
added by developer 21 months ago.
6 subjects grouped into 2 populations matched against each other.
-
Grouping-Screen-Capture
(87.1 KB) -
added by developer 9 months ago.
Arbitrary Grouping and Matching
-
Arbitrary-Payoff-Functions.jpeg
(107.6 KB) -
added by developer 9 months ago.
-
ArbGroupMatch.jpg
(154.6 KB) -
added by developer 9 months ago.
-
TwoPlayerPaired.png
(737 bytes) -
added by developer 8 months ago.
-
GroupSelfMatched.png
(1005 bytes) -
added by developer 8 months ago.
-
TwoGroupedMatchedPair.png
(1.1 KB) -
added by developer 8 months ago.
-
BlockRandomization.png
(104.3 KB) -
added by developer 8 months ago.



