Description Usage Arguments Details Value References Examples
overlap()
returns a overlapped version (either extended,
or reversed, or both) of the specified msdf
.
1 2 3 4 5 6 7 8 |
msdf |
a multiple scaled data frame (built with |
mrit_min |
a numeric constant of length 1 to specify the marginal
corrected item-total correlation. Its value is in the range of 0-1. The
default is set to |
negative_too |
a logical constant indicating whether reversed items are
included in the analysis. The default is set to |
overlap_with |
a string telling |
sclvals |
a numeric vector of length 2 indicating the start- and
endpoint of a scale. Use something like |
use |
an optional string to specify how missing values enter the
analysis. See |
use
clarifies how to set up a correlation matrix in the
presence of missing values. In a typical scaling process this happens at
least twice. First, when determining the core items (the two items in the
correlation matrix with the highest linear relationship). Second, when an
item is proposed for an emerging scale.
Note that overlap()
uses cor
's default
method pearson
.
A multiple scaled data frame (msdf
).
Müller-Schneider, T. (2001). Multiple Skalierung nach dem Kristallisationsprinzip / Multiple Scaling According to the Principle of Crystallization. Zeitschrift für Soziologie, 30(4), 305-315. https://doi.org/10.1515/zfsoz-2001-0404
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | # Build a msdf
msdf <- disjoint(mtcars, mrit_min = .4)
# Use positive correlations (extend on fragments)
overlap(msdf, mrit_min = .6)
# Use positive correlations (extend on cores)
overlap(msdf, mrit_min = .6, overlap_with = "core")
# Include negative correlations
overlap(msdf, mrit_min = .7, negative_too = TRUE, sclvals = c(-3,3))
# Change the treatment of missing values
overlap(msdf, mrit_min = .6, use = "all.obs")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.