-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathNAMESPACE
executable file
·136 lines (109 loc) · 3.04 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
useDynLib(dexter, .registration=TRUE)
importFrom(Rcpp, "evalCpp")
importFrom(RcppArmadillo, 'armadillo_set_seed')
import(dplyr, except="sql")
importFrom(RSQLite, "SQLite")
importFrom(DBI,"dbExecute", "dbGetQuery","dbDisconnect", "dbConnect", "dbListFields",
"dbCommit","dbRollback","dbBegin", "dbReadTable", "dbExistsTable", "dbIsValid",
"dbSendQuery","dbColumnInfo","dbClearResult")
importFrom(rlang,"caller_env",".data","eval_tidy","duplicate","env_has","obj_address")
importFrom(tidyr, "pivot_longer", "pivot_wider", "fill")
importFrom(MASS, "lmsreg")
importFrom(stats, "complete.cases", "cor", "quantile","var",
"sd", "weighted.mean", "as.formula", "density",
"cov", "mahalanobis", "model.matrix", "pchisq","rchisq",
"rgamma", "runif", "setNames", 'rnorm',"chisq.test",
"smooth.spline", "coef", "lm", "predict", "dnorm", "qnorm",
"rbeta","rbinom","cov2cor", "rWishart")
importFrom(graphics, "plot", "axis", "image", "layout", "par", "lines", "hist",
"text","legend","abline","segments","arrows","points", "rect","clip","strheight","strwidth")
importFrom(grDevices, "rainbow","colorRampPalette","col2rgb","rgb")
importFrom(methods, "is", "new")
importFrom(utils, "str", "head", "person", "tail", "modifyList")
# dexter.R
export(start_new_project)
export(open_project)
export(close_project)
export(add_booklet)
export(add_response_data)
export(get_testscores)
export(keys_to_rules)
export(add_item_properties)
export(add_person_properties)
export(get_persons)
export(get_design)
export(design_info)
export(get_booklets)
export(get_items)
export(get_variables)
export(get_rules)
export(touch_rules)
#data_selection.R
export(get_responses)
#oplike.R
export(start_new_project_from_oplm)
export(read_oplm_par)
#enorm.R
export(fit_enorm)
S3method(print,prms)
S3method(coef,prms)
S3method(print,enorm)
S3method(coef,enorm)
S3method(logLik,enorm)
#latent_cor.R
export(latent_cor)
#ability.R
export(ability)
export(ability_tables)
# theta_functions.R
export(information)
export(expected_score)
export(r_score)
export(p_score)
S3method(print,inf_func)
S3method(print,exp_func)
S3method(print,sim_func)
S3method(print,pmf_func)
#plausible_values.R
export(plausible_values)
#plausible_scores.R
export(plausible_scores)
#interaction_model.R
export(fit_inter)
export(fit_domains)
export(r_score_IM)
S3method(print,inter)
S3method(coef,inter)
#profile_analysis.R
export(profiles)
export(profile_tables)
#plots.R
export(profile_plot)
export(distractor_plot)
S3method(plot,enorm)
S3method(plot,inter)
S3method(plot,prms)
#dif.R
export(DIF)
S3method(plot, DIF_stats)
S3method(print, DIF_stats)
#equating.R
export(probability_to_pass)
S3method(plot,p2pass)
S3method(coef,p2pass)
S3method(print,p2pass)
#individual_differences.R
export(individual_differences)
S3method(plot,tind)
S3method(print,tind)
S3method(coef,tind)
#tia.R
export(tia_tables)
#standards.R
export(standards_3dc)
export(standards_db)
S3method(plot,sts_par)
S3method(coef,sts_par)
#resp_data.R
export(get_resp_data)
export(get_resp_matrix)