feat: uncucked my arguments

This commit is contained in:
Nick 2024-11-22 15:10:32 -06:00
parent 73a5a13100
commit 4d59a6997c
53 changed files with 391 additions and 524 deletions

View file

@ -0,0 +1,35 @@
module Debate.Arguments.TruncatedMeta exposing (..)
import Debate.Types exposing (..)
argumentTruncatedMeta : Argument
argumentTruncatedMeta =
{ 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 = "Summary"
, proofLink = "https://www.umsu.de/trees/#(P~5Q),(P)%7C=(Q)"
, definitionTable =
[ { definiendum = "P"
, definiens = "underpowered studies provide weaker causal estimates than adequately powered studies"
}
, { 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"
}
]
, argumentFormalization =
[ { premises =
[ { 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"
}
, { premise = "Underpowered studies provide weaker causal estimates than adequately powered studies."
, notation = "P"
}
]
, 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"
}
]
}