Posts made by Joseph Rézeau

Picture of Core developers Picture of Plugin developers Picture of Testers Picture of Translators

Tim wrote "Moodle 4.0 introduces a new statistics page for the question bank. On this page well known quiz statistics (e.g. mean, standard deviation, facility index) are aggregated for a specific question over all question versions in all quizzes. On the versions page (see below) you may also have a look into aggregated statistics for a specific question version."

I am currently testing Moodle 4.0dev+ (Build: 20211102). How do I get to see those aggregated statistics in the Questions bank?

And where is the Versions page?

EDIT.- Just updated my moodle site to Moodle 4.0dev+ (Build: 20211201) and ... the aggregated stats are there!

But... what does "Need for revision  = very likely " mean?

Average of ratings: Useful (3)
Picture of Développeurs Picture of Développeurs de plugins Picture of Testeurs Picture of Traducteurs

Lorsque tu parles de questions de type Oui/Non dans l'activité Leçon, je suppose que tu veux dire les questions de type Vrai/Faux ?

Si tu tiens à une disposition des choix semblable aux questions de type Choix multiple, tu n'as qu'à utiliser Choix multiple au lieu de Vrai/Faux!

Le libellé de ta question n'a pas de sens : "Avez-vous réussi à générer un contrat avec des taux horaires sont basés sur un barème ?"

Picture of Core developers Picture of Plugin developers Picture of Testers Picture of Translators
Thanks for the new data in the video, Osvaldo.
You are correct, there is a bug in the current Questionnaire version 3.10.1 (Build - 2021080400).
I had not found it because on my test sites I was actually using an older version. I think I have found the problem, which is a regression.
Thanks for pointing to the bug and sorry that it took some time for me to understand you correctly.
Joseph
I've identified the bug:
in the questionnaire/classes/question/text.php script this change from version 3.10.0 to version 3.10.1 caused the bug:
@@ -85,7 +85,8 @@ protected function question_survey_display()
version 3.10.0:
$choice->value = (isset($response->answers[$this->id][0]) ? stripslashes($response->answers[$this->id][0]->value) : '');
version 3.10.1
$choice->value = (isset($response->answers[$this->id][0]) ? format_text(stripslashes($response->answers[$this->id][0]->value)) : '');

I will post a bug report on Mike's github here: https://github.com/PoetOS/moodle-mod_questionnaire/issues/370

Picture of Core developers Picture of Plugin developers Picture of Testers Picture of Translators
@Keith,
the doc says "If using the Interactive with multiple tries or Immediate Feedback behaviour and with the navigation method set to 'Free', it is possible to make the display of a question dependent on a previous question being answered first."
Is that how your quiz is set?