3

I run the following command from the exams2openolat() video tutorial for summative online exams using R/exams

exams2openolat(exm, n = 50, name = "R-exams-OpenOLAT",
  points = 1, maxattempts = 0, cutvalue = 2, solutionswitch = FALSE,
  duration = 60, shufflesections = TRUE, navigation = "linear",
  stitle = names(exm), ititle = "Question", adescription = "", sdescription = "")

and get the error

## Error in rmarkdown::pandoc_convert(input = infile, output = outfile, from = from, :
## unused Arguments (shufflesections = TRUE, navigation = "linear")

When I leave the two arguments out, it works fine. In the YouTube tutorial the command also works with the two arguments.

Achim Zeileis
  • 15,710
  • 1
  • 39
  • 49
MrAffway
  • 33
  • 3
  • Did the answer below solve the problem for you? If so, please accept the answer by clicking the check mark below the vote counter on the left of the answer. If not, please refine the question. Thanks! – Achim Zeileis Oct 14 '20 at 23:21

1 Answers1

2

The two arguments have been introduced in version 2.4-0 of the package which was still the development version when the question was asked.

This point along with a few other details are explained in a blog post that accompanies the YouTube tutorial: http://www.R-exams.org/tutorials/openolat_exam/

Achim Zeileis
  • 15,710
  • 1
  • 39
  • 49