tab_pca | R Documentation |
Performes a principle component analysis on a data frame or matrix
(with varimax or oblimin rotation) and displays the factor solution as HTML
table, or saves them as file.
In case a data frame is used as
parameter, the Cronbach's Alpha value for each factor scale will be calculated,
i.e. all variables with the highest loading for a factor are taken for the
reliability test. The result is an alpha value for each factor dimension.
tab_pca(
data,
rotation = c("varimax", "quartimax", "promax", "oblimin", "simplimax", "cluster",
"none"),
nmbr.fctr = NULL,
fctr.load.tlrn = 0.1,
title = "Principal Component Analysis",
var.labels = NULL,
wrap.labels = 40,
show.cronb = TRUE,
show.msa = FALSE,
show.var = FALSE,
alternate.rows = FALSE,
digits = 2,
string.pov = "Proportion of Variance",
string.cpov = "Cumulative Proportion",
CSS = NULL,
encoding = NULL,
file = NULL,
use.viewer = TRUE,
remove.spaces = TRUE
)
data |
A data frame that should be used to compute a PCA, or a |
rotation |
Rotation of the factor loadings. May be one of
|
nmbr.fctr |
Number of factors used for calculating the rotation. By
default, this value is |
fctr.load.tlrn |
Specifies the minimum difference a variable needs to have between factor loadings (components) in order to indicate a clear loading on just one factor and not diffusing over all factors. For instance, a variable with 0.8, 0.82 and 0.84 factor loading on 3 possible factors can not be clearly assigned to just one factor and thus would be removed from the principal component analysis. By default, the minimum difference of loading values between the highest and 2nd highest factor should be 0.1 |
title |
String, will be used as table caption. |
var.labels |
Character vector with variable names, which will be used to label variables in the output. |
wrap.labels |
Numeric, determines how many chars of the value, variable or axis labels are displayed in one line and when a line break is inserted. |
show.cronb |
Logical, if |
show.msa |
Logical, if |
show.var |
Logical, if |
alternate.rows |
Logical, if |
digits |
Amount of decimals for estimates |
string.pov |
String for the table row that contains the proportions of variances. By default, "Proportion of Variance" will be used. |
string.cpov |
String for the table row that contains the cumulative variances. By default, "Cumulative Proportion" will be used. |
CSS |
A |
encoding |
Character vector, indicating the charset encoding used
for variable and value labels. Default is |
file |
Destination file, if the output should be saved as file.
If |
use.viewer |
Logical, if |
remove.spaces |
Logical, if |
Invisibly returns
the web page style sheet (page.style
),
the web page content (page.content
),
the complete html-output (page.complete
),
the html-table with inline-css for use with knitr (knitr
),
the factor.index
, i.e. the column index of each variable with the highest factor loading for each factor and
the removed.items
, i.e. which variables have been removed because they were outside of the fctr.load.tlrn
's range.
for further use.
## Not run:
# Data from the EUROFAMCARE sample dataset
library(sjmisc)
data(efc)
# recveive first item of COPE-index scale
start <- which(colnames(efc) == "c82cop1")
# recveive last item of COPE-index scale
end <- which(colnames(efc) == "c90cop9")
# auto-detection of labels
if (interactive()) {
tab_pca(efc[, start:end])
}
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.