Welcome to 16892 Developer Community-Open, Learning,Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

How can I give a different number of points to each exercise in an exam produced with the exams package using the function exams2nops? I already created the exam, and my question is if I can use a vector of expoints when using the nops_eval function?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
294 views
Welcome To Ask or Share your Answers For Others

1 Answer

Points can be specified at various levels:

  • Within the exercise via the expoints tag. Default if no such tag: 1 point.
  • When creating the exam with exams2nops(..., points = ...) (or other exams2xyz interfaces). Default: Use points from the exercise.
  • In the evaluation of the exam via nops_eval(..., points = ...). Default: Use points from the exam.

Thus, the points specification is always called points except in the tag within the exercise where the ex prefix is added for all R/exams tags.

In the exam and the evaluation points can be a vector of different points for each exercise.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to 16892 Developer Community-Open, Learning and Share
...