我正在使用Ramnath Vaidyanathan撰写的 Slidify 软件包。 我正在使用小部件[测验]创建我的第一个测验。
--- &multitext
1. Create a vector x of the length three, which must consist of the following values 2 , 3, and 7.
*** .hint
Use the command c()
*** .explanation
1. <span class="answer">x<-c(2,3,7)</span>
这一切都很好,但在文本输入区域,如果输入x&lt; -c(2,3,7)作为答案,则会得到不正确的图标。它只适用于数字类吗?是否可以将字符类实现到测验中?
答案 0 :(得分:2)
目前,此小部件仅设置为仅接受数字答案。它很容易启用字符输入,但我相信它是不可靠的。例如,用户可以按字符顺序键入不同的答案,并且它们都是正确的。
x <- c(2, 3, 7)
x<-c(2,3,7)
x<-c(2,3, 7)