Skip to content

Commit

Permalink
Add moderated moderation model numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
maltelueken committed Aug 28, 2023
1 parent f48c92f commit 92237d9
Showing 1 changed file with 62 additions and 0 deletions.
62 changes: 62 additions & 0 deletions R/HardCodedModels.R
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,23 @@
)
}

if (number == 3) {
processRelationships <- list(
list(
processDependent = "Y",
processIndependent = "X",
processType = "moderators",
processVariable = "W"
),
list(
processDependent = "Y",
processIndependent = "W",
processType = "moderators",
processVariable = "Z"
)
)
}

if (number == 4) {
processRelationships <- list(
list(
Expand Down Expand Up @@ -197,6 +214,28 @@
)
}

if (number == 11) {
processRelationships <- list(
list(
processDependent = "Y",
processIndependent = "X",
processType = "mediators",
processVariable = "M"
),
list(
processDependent = "M",
processIndependent = "X",
processType = "moderators",
processVariable = "W"
),
list(
processDependent = "M",
processIndependent = "W",
processType = "moderators",
processVariable = "Z"
)
)
}

if (number == 14) {
processRelationships <- list(
Expand Down Expand Up @@ -296,6 +335,29 @@
)
}

if (number == 18) {
processRelationships <- list(
list(
processDependent = "Y",
processIndependent = "X",
processType = "mediators",
processVariable = "M"
),
list(
processDependent = "Y",
processIndependent = "M",
processType = "moderators",
processVariable = "W"
),
list(
processDependent = "Y",
processIndependent = "W",
processType = "moderators",
processVariable = "Z"
)
)
}

if (number == 21) {
processRelationships <- list(
list(
Expand Down

0 comments on commit 92237d9

Please sign in to comment.