mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 06:18:28 +01:00
31 lines
1.4 KiB
PHP
31 lines
1.4 KiB
PHP
<?PHP // $Id$
|
|
// quiz_analysis.php - created with Moodle 1.7 beta + (2006101003)
|
|
|
|
|
|
$string['statistics'] = 'Quiz statistics';
|
|
$string['calculatefrom'] = 'Calculate statistics from';
|
|
|
|
|
|
$string['quizinformation'] = 'Quiz information';
|
|
$string['quizoverallstatistics'] = 'Quiz overall statistics';
|
|
$string['quizname'] = 'Quiz name';
|
|
$string['coursename'] = 'Course name';
|
|
$string['nooffirstattempts'] = 'Number of first attempts';
|
|
$string['noofallattempts'] = 'Total number of attempts';
|
|
$string['statsforfirstattempts'] = 'Statistics for first attempts';
|
|
$string['statsforallattempts'] = 'Statistics for all attempts';
|
|
$string['firstattemptsavg'] = 'Average grade of first attempts';
|
|
$string['allattemptsavg'] = 'Average grade of all attempts';
|
|
$string['attemptsall'] = 'all attempts';
|
|
$string['attemptsfirst'] = 'first attempt';
|
|
$string['errormedian'] = 'Error fetching median';
|
|
$string['errorpowers'] = 'Error fetching data to calculate variance for quiz grades';
|
|
$string['errorpowerquestions'] = 'Error fetching data to calculate variance for question grades';
|
|
$string['median'] = 'Median grade';
|
|
$string['standarddeviation'] = 'Standard deviation';
|
|
$string['skewness'] = 'Score distribution skewness';
|
|
$string['kurtosis'] = 'Score distribution kurtosis';
|
|
$string['cic'] = 'Coefficient of internal consistency';
|
|
$string['errorratio'] = 'Error ratio';
|
|
$string['standarderror'] = 'Standard error';
|
|
?>
|