Parses input object to obtain list of names, determines all required combinations of subsets of the name list, submits name list subsets to a function as the input type, and computes dominance decomposition statistics based on the returned values from the function.
Usage
domir(.obj, ...)
# S3 method for formula
domir(
.obj,
.fct,
.set = NULL,
.wst = NULL,
.all = NULL,
.adj = FALSE,
.cdl = TRUE,
.cpt = TRUE,
.rev = FALSE,
.cst = NULL,
.prg = FALSE,
...
)
# S3 method for formula_list
domir(
.obj,
.fct,
.set = NULL,
.wst = NULL,
.all = NULL,
.adj = FALSE,
.cdl = TRUE,
.cpt = TRUE,
.rev = FALSE,
.cst = NULL,
.prg = FALSE,
...
)
Arguments
- .obj
A
formula
orformula_list
.Parsed to produce list of names. Combinations of subsets the name list are
sapply
-ed to.fct
.The name list subsets submitted to
.fct
are formatted to be of the sameclass
as.obj
and are submitted to.fct
as the first, unnamed argument.- ...
Passes arguments to other methods during method dispatch; passes arguments to the function in
.fct
during function execution.- .fct
A
function
or string function name.Applied to all subsets of elements as received from
.obj
. Must return a length 1/scalar, numeric, atomic vector.- .set
A
list
.Must be comprised of elements of the same class as
.obj
. Elements of the list can be named.- .wst
Not yet used.
- .all
A
formula
orformula_list
.Must be the same class as
.obj
.- .adj
Logical.
If
TRUE
then a model including only an intercept is submitted to.fct
and the value returned is subtracted from the values returned from all subsets in the dominance analysis.- .cdl
Logical.
If
FALSE
then conditional dominance matrix is not computed.- .cpt
Logical.
If
FALSE
then complete dominance matrix is not computed.- .rev
Logical.
If
TRUE
then standardized vector, ranks, and complete dominance designations are reversed in their interpretation.- .cst
Object of class c("SOCKcluster", "cluster") from
parallel-package
.When non-
NULL
, will alter the method for collecting values from all combinations of names from usingsapply
toparallel::parSapply
.- .prg
Logical.
If
TRUE
then a progress bar is displayed during collection of values to indicate progress.
Value
Returns an object of class
"domir" composed of:
General_Dominance
Vector of general dominance values.
Standardized
Vector of general dominance values normalized to sum to 1.
Ranks
Vector of ranks applied to the general dominance values.
Conditional_Dominance
Matrix of conditional dominance values. Each row represents an element in
.obj
; each column represents a number of elements from.obj
in a subset.Complete_Dominance
Matrix of proportions of subsets where the name in the row has a larger value than the name in the column. The se proportions determine complete dominance when a value of 1 or 0.
Value
Value returned by
.fct
with all elements (i.e., from.obj
,.all
, and.adj
.Value_All
Value of
.fct
associated with elements included in.all
; when elements are in.adj
, will be adjusted forValue_Adjust
.Value_Adjust
Value of
.fct
associated with elements in.adj
.Call
The matched call.
Details
Element Parsing
.obj
s is parsed into a name list that is used to determine
the required number of combinations of subsets of the name list
included the dominance analysis. How the name list is obtained
depends on .obj
's class.
formula
The formula
creates a name list using all terms in the formula.
The terms are obtained using terms.formula
. All processing
that is normally applied to the right hand side of a formula is
implemented (see formula
).
A response/left hand side is not required but, if present, is
included in all formula
s passed to .fct
.
formula_list
The formula_list
creates a name list out of response-term pairs.
The terms are obtained using terms.formula
applied to each individual
formula in the list.
Additional Details
By default, names obtained from .obj
are all considered separate
'value-generating names' with the same priority.
Each value-generating name will be a separate element when
computing combination subsets and will be compared to all other
value-generating names.
formula
s and formula_list
elements are assumed to have an intercept
except if explicitly removed with a - 1
in the formula
(s) in .obj
.
If removed, the intercept will be removed in all formula
(s) in each
sapply
-ed subset to .fct
.
If offset
s are included, they are passed, like intercepts, while
sapply
-ing subsets to .fct
.
Changing Element Parsing
All methods' default behavior that considers all value-generating names
to be of equal priority can be overriden using .set
and .all
arguments.
Names in .set
and .all
must also be present in .obj
.
.set
.set
binds together value-generating names such that
they are of equal priority and are never separated when submitted to
.fct
.
Thus, the elements in .set
bound together contribute jointly to the
returned value and are considered, effectively, a single
value-generating name.
If list elements in .set
are named, this name will be used in all
returned results as the name of the set of value-generating names bound
together.
.set
thus considers the value-generating names an 'inseparable set' in the
dominance analysis and are always included or excluded together.
.all
.all
gives immediate priority to value-generating names.
The value-generating names in .all
are bound together, are
ascribed their full amount of the returned value from .fct
, and
are not adjusted for contribution of other value-generating names.
The value of .fct
ascribed to the value-generating names bound
together in .all
is returned separately from, and not directly
compared to, the other value-generating names.
The formula
method for .all
does not allowthe submitted formula to have
a left hand side.
.all
includes the value-generating names in 'all subsets' submitted to
the dominance analysis which effectively removes the value associated with
this set of names.
.adj
.adj
indicates that an intercept-only model should be supplied to .fct
.
This intercept-only subset is given most immediate priority and the
value of .fct
ascribed to it is removed from all other
value-generating names and sets including those in .all
.
The formula
method will submit an intercept-only formula to .fct
.
The formula_list
method creates a separate, intercept-only subset for each
of the formula
s in the list.
Both the formula
and formula_list
methods will respect the user's
removal of an intercept and or inclusion of an offset
.
.adj
then 'adjusts' the returned value for a non-0 value-returning
null model when no value generating names are included. This is often
useful when a predictive model's fit metric is not 0 when no
predictive factors are included in the model.
Additional Details
All methods submit combinations of names as an object of the same class as
.obj
. A formula
in .obj
will submit all combinations of names as
formula
s to .fct
. A formula_list
in .obj
will submit all
combinations of subsets of names as formula_list
s to .fct
.
In the case that .fct
requires a different class
(e.g.,
a character vector of names, a Formula::Formula
see fmllst2Fml
) the
subsets of names will have to be processed in .fct
to obtain the correct
class
.
The all subsets of names will be submitted to .fct
as the first, unnamed
argument.
.fct
as Analysis Pipeline
.fct
is expected to be a complete analysis pipeline that receives a
subset of names of the same class
as .obj
and uses these names in the
class
as submitted to generate a returned value of the appropriate
type to dominance analyze. Typically, the returned value is a
scalar fit statistic/metric extracted from a predictive model.
At current, only atomic (i.e., non-list
), numeric scalars (i.e.,
vectors of length 1) are allowed as returned values.
The .fct
argument is strict about names submitted and returned value
requirements for functions used. A series of checks to ensure the submitted
names and returned value adhere to these requirements.
The checks include whether the .obj
can be submitted to .fct
without
producing an error and whether the returned value from .fct
is a length 1,
atomic, numeric vector.
In most circumstances, the user will have to make their own named or
anonymous function to supply as .fct
to satisfy the checks.
Notes
formula
method
Prior to version 1.1.0, the formula
method allowed a formula
to be submitted to .adj
.
Submitting an intercept-only formula
as opposed to a
logical has been depreciated and submitting a formula
with more than an
intercept is defunct.
The formula
and formula_list
methods can be used to pass responses,
intercepts, and offset
s to all combinations of names.
If the user seeks to include other model components integral to
estimation
(i.e., a random effect term in lme4::glmer()
) include them as
update
to the submitted formula
or formula_list
imbedded in .fct
.
Second-order or higher terms (i.e., interactions like ~ a*b
) are parsed
by default but not used differently from first-order terms for producing
subsets. The values ascribed to such terms may not be valid unless
the user ensures that second-order and
higher terms are used appropriately in .fct
.
Examples
## Linear model returning r-square
lm_r2 <-
function(fml, data) {
lm_res <- lm(fml, data = data)
summary(lm_res)[["r.squared"]]
}
domir(mpg ~ am + vs + cyl, lm_r2, data = mtcars)
#> Overall Value: 0.7619773
#>
#> General Dominance Values:
#> General Dominance Standardized Ranks
#> am 0.1774892 0.2329324 3
#> vs 0.2027032 0.2660226 2
#> cyl 0.3817849 0.5010450 1
#>
#> Conditional Dominance Values:
#> Include At: 1 Include At: 2 Include At: 3
#> am 0.3597989 0.1389842 0.033684441
#> vs 0.4409477 0.1641982 0.002963748
#> cyl 0.7261800 0.3432799 0.075894823
#>
#> Complete Dominance Proportions:
#> > am > vs > cyl
#> am > NA 0.5 0
#> vs > 0.5 NA 0
#> cyl > 1.0 1.0 NA
#>
## Linear model including set
domir(
mpg ~ am + vs + cyl + carb + gear + disp + wt,
lm_r2,
.set = list(~ carb + gear, ~ disp + wt),
data = mtcars
)
#> Overall Value: 0.851596
#>
#> General Dominance Values:
#> General Dominance Standardized Ranks
#> am 0.09446712 0.1109295 5
#> vs 0.10957434 0.1286694 4
#> cyl 0.19767129 0.2321186 3
#> set1 0.20978183 0.2463396 2
#> set2 0.24010141 0.2819429 1
#>
#> Conditional Dominance Values:
#> Include At: 1 Include At: 2 Include At: 3 Include At: 4 Include At: 5
#> am 0.3597989 0.07688044 0.01944026 0.010342235 0.0058737118
#> vs 0.4409477 0.09276443 0.01167477 0.001799976 0.0006848322
#> cyl 0.7261800 0.19877978 0.04304518 0.015251991 0.0050994979
#> set1 0.7343966 0.20916653 0.05695739 0.030887988 0.0175006137
#> set2 0.7809306 0.24778381 0.08623238 0.051865275 0.0336949874
#>
#> Complete Dominance Proportions:
#> > am > vs > cyl > set1 > set2
#> am > NA 0.625 0.25 0 0
#> vs > 0.375 NA 0.00 0 0
#> cyl > 0.750 1.000 NA 0 0
#> set1 > 1.000 1.000 1.00 NA 0
#> set2 > 1.000 1.000 1.00 1 NA
#>
## Multivariate regression with multivariate r-square and
## all subsets variable
mlm_rxy <-
function(fml, data, dvnames) {
mlm_res <- lm(fml, data = data)
mlm_pred <- predict(mlm_res)
cancor(mlm_pred, data[dvnames])$cor[[1]]^2
}
domir(
cbind(wt, mpg) ~ vs + cyl + am + carb,
mlm_rxy,
.all = ~ carb,
data = mtcars,
dvnames = c("wt", "mpg")
)
#> Overall Value: 0.8384378
#> All Subset Value: 0.3137993
#>
#> General Dominance Values:
#> General Dominance Standardized Ranks
#> vs 0.07169528 0.08551056 3
#> cyl 0.21206213 0.25292531 2
#> am 0.24088099 0.28729741 1
#>
#> Conditional Dominance Values:
#> Include At: 1 Include At: 2 Include At: 3
#> vs 0.1761112 0.03768107 0.001293536
#> cyl 0.4307370 0.17804791 0.027401478
#> am 0.4311156 0.20686678 0.084660605
#>
#> Complete Dominance Proportions:
#> > vs > cyl > am
#> vs > NA 0 0
#> cyl > 1 NA 0
#> am > 1 1 NA
#>
## Named sets
domir(
mpg ~ am + gear + cyl + vs + qsec + drat,
lm_r2,
data = mtcars,
.set =
list(
trns = ~ am + gear,
eng = ~ cyl + vs,
misc = ~ qsec + drat
)
)
#> Overall Value: 0.7723016
#>
#> General Dominance Values:
#> General Dominance Standardized Ranks
#> trns 0.1568309 0.2030695 3
#> eng 0.3559983 0.4609576 1
#> misc 0.2594724 0.3359729 2
#>
#> Conditional Dominance Values:
#> Include At: 1 Include At: 2 Include At: 3
#> trns 0.3598419 0.08105688 0.029593970
#> eng 0.7282929 0.28022429 0.059477805
#> misc 0.5921951 0.18369835 0.002523669
#>
#> Complete Dominance Proportions:
#> > trns > eng > misc
#> trns > NA 0 0.5
#> eng > 1.0 NA 1.0
#> misc > 0.5 0 NA
#>
## Linear model returning AIC
lm_aic <-
function(fml, data) {
lm_res <- lm(fml, data = data)
AIC(lm_res)
}
domir(
mpg ~ am + carb + cyl,
lm_aic,
.adj = TRUE,
.rev = TRUE,
data = mtcars
)
#> Overall Value: 161.392
#> Adjustment Value: 208.7555
#>
#> General Dominance Values:
#> General Dominance Standardized Ranks
#> am -11.392847 0.2405407 2
#> carb -8.862961 0.1871265 3
#> cyl -27.107674 0.5723328 1
#>
#> Conditional Dominance Values:
#> Include At: 1 Include At: 2 Include At: 3
#> am -12.271136 -13.71691 -8.190499
#> carb -9.574847 -11.18702 -5.827017
#> cyl -39.449099 -29.43173 -12.442191
#>
#> Complete Dominance Proportions:
#> > am > carb > cyl
#> am > NA 1 0
#> carb > 0 NA 0
#> cyl > 1 1 NA
#>
## 'systemfit' with 'formula_list' method returning AIC
if (requireNamespace("systemfit", quietly = TRUE)) {
domir(
formula_list(mpg ~ am + cyl + carb, qsec ~ wt + cyl + carb),
function(fml) {
res <- systemfit::systemfit(fml, data = mtcars)
AIC(res)
},
.adj = TRUE, .rev = TRUE
)
}
#> Overall Value: 249.6543
#> Adjustment Value: 331.5366
#>
#> General Dominance Values:
#> General Dominance Standardized Ranks
#> mpg~am -15.325244 0.18716189 2
#> mpg~cyl -24.528785 0.29956153 1
#> mpg~carb -7.562994 0.09236421 5
#> qsec~wt -7.100567 0.08671676 6
#> qsec~cyl -14.587951 0.17815758 3
#> qsec~carb -12.776752 0.15603803 4
#>
#> Conditional Dominance Values:
#> Include At: 1 Include At: 2 Include At: 3 Include At: 4 Include At: 5
#> mpg~am -27.267193 -17.2155297 -13.310890 -11.614273 -10.798286
#> mpg~cyl -34.140455 -32.7126537 -29.580119 -24.066568 -16.893677
#> mpg~carb -3.557813 -7.6551343 -9.517313 -8.955999 -7.533045
#> qsec~wt 4.729558 -0.3628639 -4.385376 -8.017913 -12.972984
#> qsec~cyl -5.955071 -10.0887891 -12.887191 -14.797171 -17.965001
#> qsec~carb -10.041693 -11.3383451 -12.630015 -13.052981 -13.479836
#> Include At: 6
#> mpg~am -11.745296
#> mpg~cyl -9.779235
#> mpg~carb -8.158657
#> qsec~wt -21.593823
#> qsec~cyl -25.834484
#> qsec~carb -16.117639
#>
#> Complete Dominance Proportions:
#> > mpg~am > mpg~cyl > mpg~carb > qsec~wt > qsec~cyl > qsec~carb
#> mpg~am > NA 0.1250 0.7500 0.6875 0.5000 0.5000
#> mpg~cyl > 0.8750 NA 0.9375 0.9375 0.8125 0.8125
#> mpg~carb > 0.2500 0.0625 NA 0.6875 0.3125 0.3125
#> qsec~wt > 0.3125 0.0625 0.3125 NA 0.0625 0.3750
#> qsec~cyl > 0.5000 0.1875 0.6875 0.9375 NA 0.5000
#> qsec~carb > 0.5000 0.1875 0.6875 0.6250 0.5000 NA
#>