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

35 lines
2.2 KiB
Elm
Raw Normal View History

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."
, 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 02:19:27 -06:00
, proofText = ""
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 = "(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."
, 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
}
]
}