website/frontend/src/Debate/Arguments/Inferences/TruncatedMeta.elm

37 lines
2.5 KiB
Elm
Raw Normal View History

2024-12-08 02:18:36 -06:00
module Debate.Arguments.Inferences.TruncatedMeta exposing (..)
2024-11-16 17:48:59 -06:00
2024-12-08 02:18:36 -06:00
import Debate.Arguments.Types exposing (..)
2024-11-16 17:48:59 -06:00
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."
, propositionReductio = ""
, 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 = "PQ"
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
}
]
}