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-12-03 21:17:17 -06:00
|
|
|
, propositionSummary = "Some people argue that omission of studies from meta-analysis is bad form because the more point estimates, the better. However, I argue that there are circumstances where including more studies can actually lower the quality of causal estimates."
|
|
|
|
, proofLink = "https://www.umsu.de/trees/#(P~5Q),(P)%7C=(Q)"
|
2024-11-26 04:32:11 -06:00
|
|
|
, argumentCertainty = 7
|
2024-11-28 03:51:30 -06:00
|
|
|
, argumentImage = "truncatedmetas"
|
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
|
|
|
}
|
|
|
|
]
|
2024-12-03 21:17:17 -06:00
|
|
|
}
|