-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathNAMESPACE
145 lines (122 loc) · 2.94 KB
/
NAMESPACE
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
importFrom("tools",
"file_ext", "file_path_sans_ext", "file_path_as_absolute", "texi2dvi")
importFrom("utils",
"Sweave", "toLatex",
"compareVersion", "packageVersion", "head", "tail",
"read.table", "read.csv2", "write.table", "unzip", "zip", "browseURL")
importFrom("stats",
"dist", "median", "na.omit", "quantile", "runif")
importFrom("graphics",
"abline", "barplot", "hist", "par", "plot", "rect", "spineplot", "text")
importFrom("grDevices",
"gray", "hcl", "svg")
importFrom("base64enc",
"base64decode", "base64encode", "dataURI")
importFrom("knitr",
"knit", "opts_chunk", "opts_hooks", "render_sweave")
importFrom("rmarkdown",
"pandoc_available", "pandoc_convert")
export(
## outdated version 1 interface
"exams",
## formatters
"mchoice2string",
"string2mchoice",
"mchoice2text",
"answerlist",
"round2",
"fmt",
"char_with_braces",
"num2tol",
"num_to_tol",
"expar",
## mchoice/schoice generators
"num2schoice",
"num_to_schoice",
"det2schoice",
"det_to_schoice",
"matrix2schoice",
"matrix_to_schoice",
"matrix2mchoice",
"matrix_to_mchoice",
## version 2 extensible interface
"xexams",
"xweave",
"exams_metainfo",
"exams_eval",
"exams_skeleton",
"exams.skeleton",
## exercise reader and helper functions
"read_exercise",
"read_metainfo",
"extract_command",
"extract_extra",
"extract_environment",
"extract_items",
"include_supplement",
"include_tikz",
"match_exams_call",
"match_exams_device",
## stress testing,
"stresstest_exercise",
## LaTeX to image converter (via ImageMagick's convert)
"tex2image",
## modular PDF driver
"exams2pdf",
"make_exams_write_pdf",
## HTML driver
"exams2html",
"make_exercise_transform_html",
"make_exercise_transform_pandoc",
"make_exams_write_html",
## IMS QTI drivers
"exams2qti12",
"make_itembody_qti12",
"exams2qti21",
"make_itembody_qti21",
"exams2openolat",
"openolat_config",
"exams2canvas",
"exams2ilias",
## Blackboard driver (only partially QTI-based)
"exams2blackboard",
"make_itembody_blackboard",
## WU exam server driver (LOPS)
"exams2lops",
"make_exams_write_lops",
## mimicked WU exam server driver (NOPS)
"exams2nops",
"make_nops_template",
"nops_scan",
"nops_fix",
"nops_eval",
"nops_eval_write",
"nops_language",
## Moodle driver
"exams2moodle",
"make_question_moodle",
"make_question_moodle23",
"moodle2exams",
## ARSnova/Particify driver
"exams2arsnova",
"make_exams_write_arsnova",
"exams2particify",
## Kahoot! driver
"exams2kahoot",
## TCExam driver
"exams2tcexam",
## TestVision driver
"exams2testvision",
"make_itembody_testvision",
"testvision2exams",
## Grasple driver
"exams2grasple",
"make_exams_write_grasple",
## Pandoc driver
"exams2pandoc"
)
S3method("print", "exams_metainfo")
S3method("toLatex", "matrix")
S3method("toLatex", "data.frame")
S3method("plot", "stress")
S3method("as.data.frame", "stress")