mirror of
https://github.com/moodle/moodle.git
synced 2025-02-21 09:52:54 +01:00
40 lines
1.8 KiB
PHP
40 lines
1.8 KiB
PHP
<?PHP // $Id$
|
|
// quiz_analysis.php - created with Moodle 1.7 beta + (2006101003)
|
|
|
|
|
|
$string['statistics'] = '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['statsfor'] = 'Statistics (for $a)';
|
|
$string['attempts'] = 'Attempts';
|
|
$string['firstattempts'] = 'for first attempts';
|
|
$string['allattempts'] = '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';
|
|
$string['questionnumber'] = 'Q#';
|
|
$string['quizstructureanalysis'] = 'Quiz structure analysis';
|
|
$string['questiontype'] = 'Q type';
|
|
$string['intended_weight'] = 'Intended question weight';
|
|
$string['random_guess_score'] = 'Random guess score';
|
|
$string['facility'] = 'Facility index';
|
|
$string['nostudentsingroup'] = 'There are no students in this group yet';
|
|
?>
|