Update Examples authored by Jonathan Ehret's avatar Jonathan Ehret
......@@ -83,8 +83,6 @@ If you have two factors and want to fully randomize the order of presentation of
"UseGazeTracker": "NotTracking"
}
```
<pre><code>PASTE LOGS HERE</code></pre>
</details>
</p>
......@@ -97,5 +95,103 @@ If you have two factors and want to fully randomize the order of presentation of
| 3 | 🔵2 | 🟢1 | 🔵1 | 🟢2 | 🟠2 | 🟠1 |
| 4 | 🟢1 | 🟢2 | 🔵2 | 🟠1 | 🔵1 | 🟠2 |
| 5 | 🟢2 | 🟠1 | 🟢1 | 🟠2 | 🔵2 | 🔵1 |
| 6 | 🟠1 | 🟠2 | 🟢2 | 🔵1 | 🟢1 | 🔵2 |
| ... |
After that orders will be repeated, so having a multiple of 6 participants would be recommended here. *Also note that you can nicely see the ``Balanced Latin Square`` structure here, having in each column and row each condition exactly once and having each condition being followed by every other condition exactly once!*
# EnBlock
If you want to have, e.g., always the same colored repetition next to each other, you can you ``EnBlock``
* Color: {🟠, 🔵, 🟢} (``Mixing Order: EnBlock``)
* Number: {1, 2} (``Mixing Order: Random``)
<p>
<details>
<summary>StudySetup.json</summary>
```
{
"Phases": [
{
"Name": "Study",
"Factors": [
{
"FactorName": "Map",
"Levels": [
"/Game/Maps/StudyMap1"
],
"MixingOrder": "RandomOrder",
"Type": "Within",
"NonCombined": false,
"MapFactor": true
},
{
"FactorName": "TextColor",
"Levels": [
"Orange",
"Blue",
"Green"
],
"MixingOrder": "EnBlock",
"Type": "Within",
"NonCombined": false
},
{
"FactorName": "Number",
"Levels": [
"1",
"2"
],
"MixingOrder": "RandomOrder",
"Type": "Within",
"NonCombined": false
}
],
"Dependent Variables": [
{
"Name": "Visibility",
"Required": true
},
{
"Name": "OtherData",
"Required": false
}
],
"Number Of Repetitions": 1,
"TypeOfRepetition": "SameOrder"
}
],
"PhasesToOrderRandomize": [],
"FadeConfig":
{
"StartFadedOut": true,
"FadeDuration": 2,
"FadeOutDuration": 1,
"FadeColor": "(R=0.000000,G=0.000000,B=0.000000,A=1.000000)"
},
"ExperimenterViewConfig":
{
"ShowHUD": true,
"ShowConditionsPanelByDefault": false,
"ShowExperimenterViewInSecondWindow": false,
"SecondWindowSizeX": 1920,
"SecondWindowSizeY": 1080,
"SecondWindowPosX": 1920,
"SecondWindowPosY": 0
},
"UseGazeTracker": "NotTracking"
}
```
</details>
</p>
| participant # | | | | | | |
| --- | --- | --- | --- | --- | --- | --- |
| 0 | 🟠1 | 🟠2 | 🔵2 | 🔵1 | 🟢1 | 🟢2 |
| 1 | 🟠2 | 🟠1 | 🟢1 | 🟢2 | 🔵2 | 🔵1 |
| 2 | 🟢1 | 🟢2 | 🟠2 | 🟠1 | 🔵1 | 🔵2 |
| 3 | 🟢2 | 🟢1 | 🔵1 | 🔵2 | 🟠2 | 🟠1 |
| 4 | 🔵1 | 🔵2 | 🟢2 | 🟢1 | 🟠1 | 🟠2 |
| 5 | 🔵2 | 🔵1 | 🟠1 | 🟠2 | 🟢2 | 🟢1 |
| ... |
\ No newline at end of file