Last active
September 9, 2020 18:58
-
-
Save effigies/cba033d0cc117ddbd1fc4158f84b9e49 to your computer and use it in GitHub Desktop.
NARPS model
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Name": "NARPS", | |
"Description": "Basic NARPS model", | |
"Input": { | |
"task": "MGT" | |
}, | |
"Steps": [ | |
{ | |
"Level": "run", | |
"Transformations": [ | |
{ | |
"Name": "Threshold", | |
"Input": ["gain"], | |
"Binarize": true, | |
"Output": ["trial"] | |
}, | |
{ | |
"Name": "Scale", | |
"Input": ["gain", "loss"], | |
"Demean": true, | |
"Rescale": false, | |
"Output": ["gain", "loss"] | |
}, | |
{ | |
"Name": "Convolve", | |
"Inputs": ["trial", "gain", "loss", "demeanedRT"] | |
} | |
], | |
"Model": { | |
"X": ["trial", "gain", "loss", "demeanedRT"] | |
} | |
}, | |
{ | |
"Level": "subject", | |
"DummyContrasts": { | |
"Conditions": ["trial", "gain", "loss", "demeanedRT"], | |
"Type": "FEMA" | |
} | |
}, | |
{ | |
"Level": "dataset", | |
"DummyContrasts": { | |
"Conditions": ["trial", "gain", "loss", "demeanedRT"], | |
"Type": "t" | |
} | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment