2024-11-22 15:10:32 -06:00
|
|
|
module Debate.Arguments.TruncatedMeta exposing (..)
|
2024-11-16 17:48:59 -06:00
|
|
|
|
|
|
|
import Debate.Types exposing (..)
|
|
|
|
|
|
|
|
|
|
|
|
argumentTruncatedMeta : Argument
|
|
|
|
argumentTruncatedMeta =
|
2024-11-17 13:45:22 -06:00
|
|
|
{ argumentTitle = "Argument For Truncated Meta-Analysis"
|
|
|
|
, propositionTitle = "Meta-analytic summations that include adequately powered studies to the exclusion of insufficiently powered studies will provide better causal estimates than meta-analytic summations that include both adequately powered studies and insufficiently powered studies."
|
2024-11-18 18:55:36 -06:00
|
|
|
, propositionReductio = ""
|
2024-11-16 17:48:59 -06:00
|
|
|
, propositionSummary = "Summary"
|
2024-11-17 13:45:22 -06:00
|
|
|
, proofLink = "https://www.umsu.de/trees/#(P~5Q),(P)%7C=(Q)"
|
2024-11-22 15:10:32 -06:00
|
|
|
|
2024-11-25 18:50:12 -06:00
|
|
|
, argumentCertainty = 1
|
2024-11-16 17:48:59 -06:00
|
|
|
, definitionTable =
|
2024-11-17 13:45:22 -06:00
|
|
|
[ { definiendum = "P"
|
|
|
|
, definiens = "underpowered studies provide weaker causal estimates than adequately powered studies"
|
2024-11-16 17:48:59 -06:00
|
|
|
}
|
2024-11-17 13:45:22 -06:00
|
|
|
, { definiendum = "Q"
|
|
|
|
, definiens = "meta-analytic summations that include adequately powered studies to the exclusion of insufficiently powered studies will provide better causal estimates than meta-analytic summations that include both adequately powered studies and insufficiently powered studies"
|
2024-11-16 17:48:59 -06:00
|
|
|
}
|
|
|
|
]
|
|
|
|
, argumentFormalization =
|
|
|
|
[ { premises =
|
2024-11-17 13:45:22 -06:00
|
|
|
[ { premise = "If underpowered studies provide weaker causal estimates than adequately powered studies, then meta-analytic summations that include adequately powered studies to the exclusion of insufficiently powered studies will provide better causal estimates than meta-analytic summations that include both adequately powered studies and insufficiently powered studies."
|
2024-11-22 15:10:32 -06:00
|
|
|
, notation = "P→Q"
|
2024-11-16 17:48:59 -06:00
|
|
|
}
|
2024-11-17 13:45:22 -06:00
|
|
|
, { premise = "Underpowered studies provide weaker causal estimates than adequately powered studies."
|
2024-11-22 15:10:32 -06:00
|
|
|
, notation = "P"
|
2024-11-16 17:48:59 -06:00
|
|
|
}
|
|
|
|
]
|
2024-11-17 13:45:22 -06:00
|
|
|
, conclusion = "Therefore, meta-analytic summations that include adequately powered studies to the exclusion of insufficiently powered studies will provide better causal estimates than meta-analytic summations that include both adequately powered studies and insufficiently powered studies."
|
2024-11-22 15:10:32 -06:00
|
|
|
, conclusionNotation = "Q"
|
2024-11-16 17:48:59 -06:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|