forked from cran/exams
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNAMESPACE
117 lines (98 loc) · 2.35 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
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",
"hcl", "svg")
export(
## outdated version 1 interface
"exams",
## formatters
"mchoice2string",
"string2mchoice",
"mchoice2text",
"answerlist",
"round2",
"fmt",
"char_with_braces",
"num2tol",
"num_to_tol",
## 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",
## "exams2ilias",
"exams2openolat",
## 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_eval",
## Moodle driver
"exams2moodle",
"make_question_moodle",
"make_question_moodle23",
## ARSnova driver
"exams2arsnova",
"make_exams_write_arsnova",
## TCExam driver
"exams2tcexam",
## Pandoc driver
"exams2pandoc"
)
S3method("print", "exams_metainfo")
S3method("toLatex", "matrix")
S3method("plot", "stress")
S3method("as.data.frame", "stress")