We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently responses are recorded in the following format:
"Seed: n; ans1: ""..."" [score]; prt1: # = 1 | prt1-1-T"
To make parsing this more routing in offline analysis, creating an optional JSON equivalent of this would be beneficial. For example
{ "Seed": "n", "inputs": { "ans1" : { "value" : "...", "status" : "score" }, "ans2" : ... }, "prts" : { "prt1" : { "score" : "1", "node" : "prt1-1-T" }, "prt2" : ... } }
The text was updated successfully, but these errors were encountered:
Add in comments related to issue #1363.
4330011
@smmercuri, thanks for raising this. I suggest you start with this method to create a JSON object. https://github.com/maths/moodle-qtype_stack/blob/dev/question.php#L770 We can then decide how to give a teacher access to this method, e.g. adding functionality to the analysis script https://github.com/maths/moodle-qtype_stack/blob/dev/questiontestreport.php
Sorry, something went wrong.
No branches or pull requests
Currently responses are recorded in the following format:
To make parsing this more routing in offline analysis, creating an optional JSON equivalent of this would be beneficial. For example
The text was updated successfully, but these errors were encountered: