View source: R/factorLoadingDiamondCIplot.R
factorLoadingDiamondCIplot | R Documentation |
This function uses the diamondPlot()
to visualise the results of
a factor analyses. Because the factor loadings computed in factor analysis
are point estimates, they may vary from sample to sample. The factor
loadings for any given sample are usually not relevant; samples are but
means to study populations, and so, researchers are usually interested in
population values for the factor loadings. However, tables with lots of
loadings can quickly become confusing and intimidating. This function aims
to facilitate working with and interpreting factor analysis based on
confidence intervals by visualising the factor loadings and their confidence
intervals.
factorLoadingDiamondCIplot(
fa,
xlab = "Factor Loading",
colors = viridisPalette(max(2, fa$factors)),
labels = NULL,
theme = ggplot2::theme_bw(),
sortAlphabetically = FALSE,
...
)
fa |
The object produced by the |
xlab |
The label for the x axis. |
colors |
The colors used for the factors. The default uses the discrete
|
labels |
The labels to use for the items (on the Y axis). |
theme |
The ggplot2 theme to use. |
sortAlphabetically |
Whether to sort the items alphabetically. |
... |
Additional arguments will be passed to
|
A ggplot2::ggplot()
plot with several
ggDiamondLayer()
s is returned.
Gjalt-Jorn Peters
Maintainer: Gjalt-Jorn Peters gjalt-jorn@userfriendlyscience.com
psych::fa()
ss, meansDiamondPlot()
,
meanSDtoDiamondPlot()
, diamondPlot()
,
ggDiamondLayer()
## Not run:
### (Not run during testing because it takes too long and
### may generate warnings because of the bootstrapping of
### the confidence intervals)
factorLoadingDiamondCIplot(psych::fa(psych::Bechtoldt,
nfactors=2,
n.iter=50,
n.obs=200));
### And using a lower alpha value for the diamonds to
### make them more transparent
factorLoadingDiamondCIplot(psych::fa(psych::Bechtoldt,
nfactors=2,
n.iter=50,
n.obs=200),
alpha=.5,
size=1);
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.