1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/loadingFromAlpha.R
\name{loadingFromAlpha}
\alias{loadingFromAlpha}
\title{Find standardized factor loading from coefficient alpha}
\usage{
loadingFromAlpha(alpha, ni)
}
\arguments{
\item{alpha}{A desired coefficient alpha value.}
\item{ni}{A desired number of items.}
}
\value{
\item{result}{The standardized factor loadings that make desired
coefficient alpha with specified number of items.}
}
\description{
Find standardized factor loading from coefficient alpha assuming that all
items have equal loadings.
}
\examples{
loadingFromAlpha(0.8, 4)
}
\author{
Sunthud Pornprasertmanit (\email{psunthud@gmail.com})
}
|