使用php中的加权平均值进行评分

时间:2016-07-11 14:57:21

标签: php weighted-average

我怎么能用PHP评分这个测试?我需要百分比......

我有一系列问题包含正确/错误的bool和相应的重量。

我是否需要先找到正确答案的平均值?

等式是什么?

$questions = array(
    0=>array(
        'Question'=>"Some Question",
        'Correct'=>true,
        'Weight'=>5,
    ),
    1=>array(
        'Question'=>"Some Question",
        'Correct'=>false,
        'Weight'=>5,
    ),
    2=>array(
        'Question'=>"Some Question",
        'Correct'=>true,
        'Weight'=>4,
    ),
    3=>array(
        'Question'=>"Some Question",
        'Correct'=>true,
        'Weight'=>0,
    ),
    4=>array(
        'Question'=>"Some Question",
        'Correct'=>false,
        'Weight'=>5,
    ),
    5=>array(
        'Question'=>"Some Question",
        'Correct'=>true,
        'Weight'=>4,
    ),
);
$weights = array(
    0=>0
    1=>0
    2=>.05
    3=>.20
    4=>.25
    5=>.50
);
$totalQuestions=0;
$correctAnswers=0;
$points=0;
foreach($questions as $question){
    $totalQuestions++;
    if($question['Correct']){
        $correctAnswers++;
        $points = $points = $weights[$question['Weight'];
    }
}

3 个答案:

答案 0 :(得分:0)

通常,平均值(加权与否)是总可能事物的总和。如果它是加权的,通常意味着每件事都不是一件事,但实际上是weightOfThing事。

示例:

$totalQuestions = count($questions); //No need to increment
$totalWeight = 0; //Could do a sum here but no need
$weightedSum = 0;
foreach($questions as $question){
    $totalWeight += isset($question["Weight"])?$question["Weight"]:0; //Assume a question with no weight has 0 weight, i.e., doesn't count. Adjust accordingly
    if($question['Correct']){
        $weightedSum += isset($question["Weight"])?$question["Weight"]:0;
    }
}
$weightedAverage = $weightedSum / $totalWeight;

答案 1 :(得分:0)

您可以计算候选人所获得的权重数量(即您拥有的分数),然后计算可能的总权数(即完美分数)。

然后你可以将候选分数除以总分:

  

得分=候选人得分/总得分

从那里你可以计算百分比:

  

百分比=得分* 100

使用您的代码:

$totalQuestions=0;
$totalWeights=0;
$correctAnswers=0;
$weightsEarned=0;
foreach($questions as $question){
    $totalQuestions++;
    $totalWeights+=$weights[$question['Weight']];
    if($question['Correct']){
        $correctAnswers++;
        $weightsEarned += $weights[$question['Weight']];
    }
}

echo "Score Overview: ";
echo "<br/>Weights Earned: " . $weightsEarned;
echo "<br/>Correct Answers: " . $correctAnswers;
echo "<br/>Total Weights Possible : " . $totalWeights;
echo "<br/>Percentage Earned: " . ($weightsEarned / $totalWeights) * 100;

答案 2 :(得分:0)

可以进行优化,但这里是完整的等式:

$weights = array(
    0=>0,
    1=>0,
    2=>.05,
    3=>.20,
    4=>.25,
    5=>.50,
);

$byWeight = array();
foreach($questions as $question){
    //$totalQuestions++;
    $byWeight[$question['Weight']]['TotalNumberOfQuestionsForWeight']++;
    if($question['Correct']){
        $byWeight[$question['Weight']]['CorrectAnswers']++;
    }
}

$totalWeightsSum = 0;
foreach($byWeight as $weight => $data){
     $totalWeightsSum = $totalWeightsSum + (($data['CorrectAnswers'] / $data['TotalNumberOfQuestionsForWeight']) * $weights[$weight]);
}

echo '<pre>'.var_export($byWeight,1).'</pre>';
echo $totalWeightsSum / array_sum($weights);