2024-11-16 17:48:59 -06:00
|
|
|
module Debate.Arguments.Science.TruncatedMeta exposing (..)
|
|
|
|
|
|
|
|
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-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-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."
|
|
|
|
, 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."
|
|
|
|
, 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."
|
|
|
|
, conclusionNotation = "(∴Q)"
|
2024-11-16 17:48:59 -06:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|