1
1
# Generated by roxygen2: do not edit by hand
2
2
3
+ S3method(balance_partitions,blocked_cross_validation)
4
+ S3method(balance_partitions,bootstrap_blocked_cross_validation)
5
+ S3method(balance_partitions,custom_cross_validation)
6
+ S3method(balance_partitions,default)
7
+ S3method(balance_partitions,kfold_cross_validation)
8
+ S3method(balance_partitions,sequential_blocked_cross_validation)
9
+ S3method(balance_partitions,twofold_blocked_cross_validation)
3
10
S3method(crossval_samples,blocked_cross_validation)
4
11
S3method(crossval_samples,bootstrap_blocked_cross_validation)
5
12
S3method(crossval_samples,custom_cross_validation)
@@ -54,6 +61,7 @@ S3method(print,mvpa_dataset)
54
61
S3method(print,mvpa_design)
55
62
S3method(print,mvpa_model)
56
63
S3method(print,mvpa_surface_dataset)
64
+ S3method(print,mvpa_sysinfo)
57
65
S3method(print,regression_result)
58
66
S3method(print,rsa_design)
59
67
S3method(print,rsa_model)
@@ -64,6 +72,7 @@ S3method(print,vector_rsa_design)
64
72
S3method(print,vector_rsa_model)
65
73
S3method(prob_observed,binary_classification_result)
66
74
S3method(prob_observed,multiway_classification_result)
75
+ S3method(process_roi,custom_internal_model_spec)
67
76
S3method(run_regional,default)
68
77
S3method(run_regional,feature_rsa_model)
69
78
S3method(run_regional,mvpa_model)
@@ -89,6 +98,7 @@ S3method(y_train,feature_rsa_model)
89
98
S3method(y_train,mvpa_design)
90
99
S3method(y_train,mvpa_model)
91
100
export(MVPAModels)
101
+ export(balance_partitions)
92
102
export(binary_classification_result)
93
103
export(blocked_cross_validation)
94
104
export(bootstrap_blocked_cross_validation)
@@ -130,6 +140,7 @@ export(mvpa_design)
130
140
export(mvpa_iterate)
131
141
export(mvpa_model)
132
142
export(mvpa_surface_dataset)
143
+ export(mvpa_sysinfo)
133
144
export(nobs)
134
145
export(nresponses)
135
146
export(pcadist)
@@ -142,6 +153,8 @@ export(regional_mvpa_result)
142
153
export(robustmahadist)
143
154
export(rsa_design)
144
155
export(rsa_model)
156
+ export(run_custom_regional)
157
+ export(run_custom_searchlight)
145
158
export(run_regional)
146
159
export(run_regional_base)
147
160
export(run_searchlight)
@@ -160,19 +173,37 @@ export(y_train)
160
173
import(dplyr)
161
174
import(stringr)
162
175
importFrom(MASS,huber)
176
+ importFrom(Matrix,sparseMatrix)
163
177
importFrom(Rfit,rfit)
164
178
importFrom(assertthat,assert_that)
165
179
importFrom(corpcor,invcov.shrink)
180
+ importFrom(dplyr,all_of)
166
181
importFrom(dplyr,bind_rows)
167
182
importFrom(dplyr,filter)
183
+ importFrom(dplyr,mutate)
184
+ importFrom(dplyr,pull)
185
+ importFrom(dplyr,rename)
186
+ importFrom(dplyr,select)
168
187
importFrom(ffmanova,ffmanova)
169
188
importFrom(furrr,future_map)
170
189
importFrom(furrr,future_pmap)
190
+ importFrom(futile.logger,flog.debug)
171
191
importFrom(futile.logger,flog.error)
172
192
importFrom(futile.logger,flog.info)
193
+ importFrom(futile.logger,flog.warn)
194
+ importFrom(future,"%<-%")
195
+ importFrom(future,"%globals%")
196
+ importFrom(future,multisession)
197
+ importFrom(future,plan)
198
+ importFrom(future,sequential)
199
+ importFrom(future.apply,future_lapply)
200
+ importFrom(future.apply,future_mapply)
201
+ importFrom(glmnet,cv.glmnet)
202
+ importFrom(glmnet,glmnet)
173
203
importFrom(io,qread)
174
204
importFrom(memoise,memoise)
175
205
importFrom(methods,as)
206
+ importFrom(methods,is)
176
207
importFrom(modelr,resample)
177
208
importFrom(neuroim2,NeuroVol)
178
209
importFrom(neuroim2,ROIVec)
@@ -194,19 +225,28 @@ importFrom(neurosurf,ROISurfaceVector)
194
225
importFrom(neurosurf,geometry)
195
226
importFrom(neurosurf,nodes)
196
227
importFrom(purrr,is_formula)
228
+ importFrom(purrr,list_assign)
197
229
importFrom(purrr,map)
198
230
importFrom(purrr,map_dbl)
199
231
importFrom(purrr,map_df)
232
+ importFrom(purrr,map_int)
233
+ importFrom(purrr,map_lgl)
200
234
importFrom(sda,sda.ranking)
201
235
importFrom(stats,as.formula)
202
236
importFrom(stats,coef)
203
237
importFrom(stats,cor)
204
238
importFrom(stats,dist)
239
+ importFrom(stats,dnorm)
205
240
importFrom(stats,lm)
206
241
importFrom(stats,mahalanobis)
207
242
importFrom(stats,median)
208
243
importFrom(stats,pf)
209
244
importFrom(stats,prcomp)
210
245
importFrom(stats,rnorm)
211
246
importFrom(stats,sd)
247
+ importFrom(stats,setNames)
212
248
importFrom(stats,terms)
249
+ importFrom(stats,var)
250
+ importFrom(tibble,is_tibble)
251
+ importFrom(tibble,tibble)
252
+ importFrom(tidyr,unnest_wider)
0 commit comments