Diff of /partyMod/src/Classes.h [000000] .. [fbf06f]

Switch to unified view

a b/partyMod/src/Classes.h
1
2
extern SEXP
3
    PL2_expectationSym,
4
    PL2_covarianceSym,
5
    PL2_linearstatisticSym,
6
    PL2_expcovinfSym,
7
    PL2_expcovinfssSym,
8
    PL2_sumweightsSym,
9
    PL2_dimensionSym,
10
    PL2_MPinvSym,
11
    PL2_rankSym,
12
    PL2_svdmemSym,
13
    PL2_methodSym,
14
    PL2_jobuSym, 
15
    PL2_jobvSym, 
16
    PL2_uSym,
17
    PL2_vSym,
18
    PL2_sSym,
19
    PL2_pSym,
20
    PL2_teststatSym,
21
    PL2_pvalueSym,
22
    PL2_tolSym,
23
    PL2_maxptsSym,
24
    PL2_absepsSym,
25
    PL2_relepsSym,
26
    PL2_minsplitSym,
27
    PL2_minbucketSym,
28
    PL2_minprobSym,
29
    PL2_variablesSym, 
30
    PL2_transformationsSym, 
31
    PL2_is_nominalSym, 
32
    PL2_is_ordinalSym, 
33
    PL2_is_censoredSym, 
34
    PL2_orderingSym, 
35
    PL2_levelsSym, 
36
    PL2_scoresSym, 
37
    PL2_has_missingsSym, 
38
    PL2_whichNASym, 
39
    PL2_test_trafoSym, 
40
    PL2_predict_trafoSym, 
41
    PL2_nobsSym, 
42
    PL2_ninputsSym,
43
    PL2_linexpcov2sampleSym, 
44
    PL2_weightsSym, 
45
    PL2_varmemorySym,
46
    PL2_linexpcov2sampleSym, 
47
    PL2_weightsSym, 
48
    PL2_varmemorySym, 
49
    PL2_responsesSym, 
50
    PL2_inputsSym,
51
    PL2_testtypeSym, 
52
    PL2_nresampleSym,
53
    PL2_varctrlSym, 
54
    PL2_splitctrlSym, 
55
    PL2_gtctrlSym,
56
    PL2_mincriterionSym,
57
    PL2_randomsplitsSym,
58
    PL2_mtrySym,
59
    PL2_dontuseSym,
60
    PL2_dontusetmpSym,
61
    PL2_stumpSym,
62
    PL2_tgctrlSym,
63
    PL2_ntreeSym,
64
    PL2_replaceSym,
65
    PL2_fractionSym,
66
    PL2_traceSym,
67
    PL2_dropcriterionSym,
68
    PL2_compressSym,
69
    PL2_expandSym,
70
    PL2_varOnceSym;
71
            
72
int get_dimension(SEXP object);
73
int get_teststat(SEXP object);
74
double get_tol(SEXP object);
75
int get_pvalue(SEXP object);
76
int get_maxpts(SEXP object);
77
double get_abseps(SEXP object);
78
double get_releps(SEXP object);
79
double get_minsplit(SEXP object);
80
double get_minprob(SEXP object);
81
double get_minbucket(SEXP object);
82
SEXP get_transformation(SEXP object, int variable);
83
SEXP get_test_trafo(SEXP object);
84
SEXP get_predict_trafo(SEXP object);
85
SEXP get_variable(SEXP object, int variable);
86
int is_nominal(SEXP object, int variable);
87
int is_ordinal(SEXP object, int variable);
88
int is_censored(SEXP object, int variable);
89
int has_missings(SEXP object, int variable);
90
SEXP get_missings(SEXP object, int variable);
91
SEXP get_ordering(SEXP object, int variable);
92
SEXP get_levels(SEXP object, int variable);
93
SEXP get_scores(SEXP object, int variable); 
94
SEXP get_whichNA(SEXP object, int variable);
95
SEXP get_varmemory(SEXP object, int variable);
96
int get_nobs(SEXP object);
97
int get_ninputs(SEXP object);
98
SEXP get_weights(SEXP object);
99
int get_testtype(SEXP object);
100
int get_nresample(SEXP object);
101
SEXP get_varctrl(SEXP object);
102
SEXP get_splitctrl(SEXP object);
103
SEXP get_gtctrl(SEXP object);
104
double get_mincriterion(SEXP object);
105
int get_randomsplits(SEXP object);
106
SEXP get_mtry(SEXP object);
107
SEXP get_dontuse(SEXP object);
108
SEXP get_dontusetmp(SEXP object);
109
int get_stump(SEXP object);
110
int get_maxsurrogate(SEXP object);
111
SEXP get_tgctrl(SEXP object);
112
SEXP get_splitstatistics(SEXP object);
113
int get_savesplitstats(SEXP object);
114
int check_depth(SEXP object, int depth);
115
int get_ntree(SEXP object);
116
int get_replace(SEXP object);
117
double get_fraction(SEXP object);
118
int get_trace(SEXP object);
119
int get_dropcriterion(SEXP object);
120
SEXP get_compress(SEXP object);
121
SEXP get_expand(SEXP object);
122
int get_only_use_variable_once(SEXP object);