. /** * Quiz statistics report, table for showing statistics of each question in the quiz. * * @package quiz_statistics * @copyright 2008 Jamie Pratt * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ defined('MOODLE_INTERNAL') || die(); require_once($CFG->libdir.'/tablelib.php'); /** * This table has one row for each question in the quiz, with sub-rows when * random questions and variants appear. * * There are columns for the various item and position statistics. * * @copyright 2008 Jamie Pratt * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ class quiz_statistics_table extends flexible_table { /** @var object the quiz settings. */ protected $quiz; /** @var integer the quiz course_module id. */ protected $cmid; /** * Constructor. */ public function __construct() { parent::__construct('mod-quiz-report-statistics-report'); } /** * Set up the columns and headers and other properties of the table and then * call flexible_table::setup() method. * * @param object $quiz the quiz settings * @param int $cmid the quiz course_module id * @param moodle_url $reporturl the URL to redisplay this report. * @param int $s number of attempts included in the statistics. */ public function statistics_setup($quiz, $cmid, $reporturl, $s) { $this->quiz = $quiz; $this->cmid = $cmid; // Define the table columns. $columns = array(); $headers = array(); $columns[] = 'number'; $headers[] = get_string('questionnumber', 'quiz_statistics'); if (!$this->is_downloading()) { $columns[] = 'icon'; $headers[] = ''; $columns[] = 'actions'; $headers[] = ''; } else { $columns[] = 'qtype'; $headers[] = get_string('questiontype', 'quiz_statistics'); } $columns[] = 'name'; $headers[] = get_string('questionname', 'quiz'); $columns[] = 's'; $headers[] = get_string('attempts', 'quiz_statistics'); if ($s > 1) { $columns[] = 'facility'; $headers[] = get_string('facility', 'quiz_statistics'); $columns[] = 'sd'; $headers[] = get_string('standarddeviationq', 'quiz_statistics'); } $columns[] = 'random_guess_score'; $headers[] = get_string('random_guess_score', 'quiz_statistics'); $columns[] = 'intended_weight'; $headers[] = get_string('intended_weight', 'quiz_statistics'); $columns[] = 'effective_weight'; $headers[] = get_string('effective_weight', 'quiz_statistics'); $columns[] = 'discrimination_index'; $headers[] = get_string('discrimination_index', 'quiz_statistics'); $columns[] = 'discriminative_efficiency'; $headers[] = get_string('discriminative_efficiency', 'quiz_statistics'); $this->define_columns($columns); $this->define_headers($headers); $this->sortable(false); $this->column_class('s', 'numcol'); $this->column_class('facility', 'numcol'); $this->column_class('sd', 'numcol'); $this->column_class('random_guess_score', 'numcol'); $this->column_class('intended_weight', 'numcol'); $this->column_class('effective_weight', 'numcol'); $this->column_class('discrimination_index', 'numcol'); $this->column_class('discriminative_efficiency', 'numcol'); // Set up the table. $this->define_baseurl($reporturl->out()); $this->collapsible(true); $this->set_attribute('id', 'questionstatistics'); $this->set_attribute('class', 'generaltable generalbox boxaligncenter'); parent::setup(); } /** * The question number. * @param \core_question\statistics\questions\calculated $questionstat stats for the question. * @return string contents of this table cell. */ protected function col_number($questionstat) { if (!isset($questionstat->question->number)) { return ''; } $number = $questionstat->question->number; if (isset($questionstat->subqdisplayorder)) { $number = $number . '.'.$questionstat->subqdisplayorder; } if ($questionstat->question->qtype != 'random' && !is_null($questionstat->variant)) { $number = $number . '.'.$questionstat->variant; } return $number; } /** * The question type icon. * @param \core_question\statistics\questions\calculated $questionstat stats for the question. * @return string contents of this table cell. */ protected function col_icon($questionstat) { return print_question_icon($questionstat->question, true); } /** * Actions that can be performed on the question by this user (e.g. edit or preview). * @param \core_question\statistics\questions\calculated $questionstat stats for the question. * @return string contents of this table cell. */ protected function col_actions($questionstat) { return quiz_question_action_icons($this->quiz, $this->cmid, $questionstat->question, $this->baseurl, $questionstat->variant); } /** * The question type name. * * @param \core_question\statistics\questions\calculated $questionstat stats for the question. * @return string contents of this table cell. */ protected function col_qtype($questionstat) { return question_bank::get_qtype_name($questionstat->question->qtype); } /** * The question name. * * @param \core_question\statistics\questions\calculated $questionstat stats for the question. * @return string contents of this table cell. */ protected function col_name($questionstat) { $name = $questionstat->question->name; if (!is_null($questionstat->variant)) { $a = new stdClass(); $a->name = $name; $a->variant = $questionstat->variant; $name = get_string('nameforvariant', 'quiz_statistics', $a); } if ($this->is_downloading()) { return $name; } $baseurl = new moodle_url($this->baseurl); if (!is_null($questionstat->variant)) { if ($questionstat->subquestion) { // Variant of a sub-question. $url = new moodle_url($baseurl, array('qid' => $questionstat->questionid, 'variant' => $questionstat->variant)); $name = html_writer::link($url, $name, array('title' => get_string('detailedanalysisforvariant', 'quiz_statistics', $questionstat->variant))); } else if ($questionstat->slot) { // Variant of a question in a slot. $url = new moodle_url($baseurl, array('slot' => $questionstat->slot, 'variant' => $questionstat->variant)); $name = html_writer::link($url, $name, array('title' => get_string('detailedanalysisforvariant', 'quiz_statistics', $questionstat->variant))); } } else { if ($questionstat->subquestion && !$questionstat->get_variants()) { // Sub question without variants. $url = new moodle_url($baseurl, array('qid' => $questionstat->questionid)); $name = html_writer::link($url, $name, array('title' => get_string('detailedanalysis', 'quiz_statistics'))); } else if ($baseurl->param('slot') === null && $questionstat->slot) { // Question in a slot, we are not on a page showing structural analysis of one slot, // we don't want linking on those pages. $number = $questionstat->question->number; $url = new moodle_url($baseurl, array('slot' => $questionstat->slot)); if ($questionstat->get_variants() || $questionstat->get_sub_question_ids()) { // Question can be broken down into sub-questions or variants. Link will show structural analysis page. $name = html_writer::link($url, $name, array('title' => get_string('slotstructureanalysis', 'quiz_statistics', $number))); } else { // Question cannot be broken down into sub-questions or variants. Link will show response analysis page. $name = html_writer::link($url, $name, array('title' => get_string('detailedanalysis', 'quiz_statistics'))); } } } if ($this->is_dubious_question($questionstat)) { $name = html_writer::tag('div', $name, array('class' => 'dubious')); } if (!empty($questionstat->minmedianmaxnotice)) { $name = get_string($questionstat->minmedianmaxnotice, 'quiz_statistics') . '
' . $name; } return $name; } /** * The number of attempts at this question. * * @param \core_question\statistics\questions\calculated $questionstat stats for the question. * @return string contents of this table cell. */ protected function col_s($questionstat) { if (!isset($questionstat->s)) { return 0; } return $questionstat->s; } /** * The facility index (average fraction). * @param \core_question\statistics\questions\calculated $questionstat stats for the question. * @return string contents of this table cell. */ protected function col_facility($questionstat) { if (is_null($questionstat->facility)) { return ''; } return number_format($questionstat->facility*100, 2) . '%'; } /** * The standard deviation of the fractions. * @param \core_question\statistics\questions\calculated $questionstat stats for the question. * @return string contents of this table cell. */ protected function col_sd($questionstat) { if (is_null($questionstat->sd) || $questionstat->maxmark == 0) { return ''; } return number_format($questionstat->sd*100 / $questionstat->maxmark, 2) . '%'; } /** * An estimate of the fraction a student would get by guessing randomly. * @param \core_question\statistics\questions\calculated $questionstat stats for the question. * @return string contents of this table cell. */ protected function col_random_guess_score($questionstat) { if (is_null($questionstat->randomguessscore)) { return ''; } return number_format($questionstat->randomguessscore * 100, 2).'%'; } /** * The intended question weight. Maximum mark for the question as a percentage * of maximum mark for the quiz. That is, the indended influence this question * on the student's overall mark. * @param \core_question\statistics\questions\calculated $questionstat stats for the question. * @return string contents of this table cell. */ protected function col_intended_weight($questionstat) { return quiz_report_scale_summarks_as_percentage($questionstat->maxmark, $this->quiz); } /** * The effective question weight. That is, an estimate of the actual * influence this question has on the student's overall mark. * @param \core_question\statistics\questions\calculated $questionstat stats for the question. * @return string contents of this table cell. */ protected function col_effective_weight($questionstat) { global $OUTPUT; if (is_null($questionstat->effectiveweight)) { return ''; } if ($questionstat->negcovar) { $negcovar = get_string('negcovar', 'quiz_statistics'); if (!$this->is_downloading()) { $negcovar = html_writer::tag('div', $negcovar . $OUTPUT->help_icon('negcovar', 'quiz_statistics'), array('class' => 'negcovar')); } return $negcovar; } return number_format($questionstat->effectiveweight, 2) . '%'; } /** * Discrimination index. This is the product moment correlation coefficient * between the fraction for this question, and the average fraction for the * other questions in this quiz. * @param \core_question\statistics\questions\calculated $questionstat stats for the question. * @return string contents of this table cell. */ protected function col_discrimination_index($questionstat) { if (!is_numeric($questionstat->discriminationindex)) { return $questionstat->discriminationindex; } return number_format($questionstat->discriminationindex, 2) . '%'; } /** * Discrimination efficiency, similar to, but different from, the Discrimination index. * * @param \core_question\statistics\questions\calculated $questionstat stats for the question. * @return string contents of this table cell. */ protected function col_discriminative_efficiency($questionstat) { if (!is_numeric($questionstat->discriminativeefficiency)) { return ''; } return number_format($questionstat->discriminativeefficiency, 2) . '%'; } /** * This method encapsulates the test for wheter a question should be considered dubious. * @param \core_question\statistics\questions\calculated $questionstat stats for the question. * @return bool is this question possibly not pulling it's weight? */ protected function is_dubious_question($questionstat) { if (!is_numeric($questionstat->discriminativeefficiency)) { return false; } return $questionstat->discriminativeefficiency < 15; } public function wrap_html_start() { // Horrible Moodle 2.0 wide-content work-around. if (!$this->is_downloading()) { echo html_writer::start_tag('div', array('id' => 'tablecontainer', 'class' => 'statistics-tablecontainer')); } } public function wrap_html_finish() { if (!$this->is_downloading()) { echo html_writer::end_tag('div'); } } }