Skip to main content
  • Home
  • Development
  • Documentation
  • Donate
  • Operational login
  • Browse the archive

swh logo
SoftwareHeritage
Software
Heritage
Archive
Features
  • Search

  • Downloads

  • Save code now

  • Add forge now

  • Help

https://github.com/cran/nFactors
24 October 2022, 04:44:14 UTC
  • Code
  • Branches (47)
  • Releases (0)
  • Visits
    • Branches
    • Releases
    • HEAD
    • refs/heads/master
    • refs/tags/1.0
    • refs/tags/2.1
    • refs/tags/2.2
    • refs/tags/2.3
    • refs/tags/2.3.1
    • refs/tags/2.3.2
    • refs/tags/2.3.3
    • refs/tags/2.3.3.1
    • refs/tags/2.4.1
    • refs/tags/2.4.1.1
    • refs/tags/R-2.10.0
    • refs/tags/R-2.10.1
    • refs/tags/R-2.11.0
    • refs/tags/R-2.11.1
    • refs/tags/R-2.12.0
    • refs/tags/R-2.12.1
    • refs/tags/R-2.12.2
    • refs/tags/R-2.13.0
    • refs/tags/R-2.13.1
    • refs/tags/R-2.13.2
    • refs/tags/R-2.14.0
    • refs/tags/R-2.14.1
    • refs/tags/R-2.14.2
    • refs/tags/R-2.15.0
    • refs/tags/R-2.15.1
    • refs/tags/R-2.15.2
    • refs/tags/R-2.15.3
    • refs/tags/R-2.4.0
    • refs/tags/R-2.4.1
    • refs/tags/R-2.5.0
    • refs/tags/R-2.5.1
    • refs/tags/R-2.6.0
    • refs/tags/R-2.6.1
    • refs/tags/R-2.6.2
    • refs/tags/R-2.7.0
    • refs/tags/R-2.7.1
    • refs/tags/R-2.7.2
    • refs/tags/R-2.8.0
    • refs/tags/R-2.8.1
    • refs/tags/R-2.9.0
    • refs/tags/R-2.9.1
    • refs/tags/R-2.9.2
    • refs/tags/R-3.0.0
    • refs/tags/R-3.0.1
    • refs/tags/R-3.0.2
    • refs/tags/R-3.0.3
    No releases to show
  • 1f3de83
  • /
  • man
  • /
  • nSeScree.rd
Raw File Download
Take a new snapshot of a software origin

If the archived software origin currently browsed is not synchronized with its upstream version (for instance when new commits have been issued), you can explicitly request Software Heritage to take a new snapshot of it.

Use the form below to proceed. Once a request has been submitted and accepted, it will be processed as soon as possible. You can then check its processing state by visiting this dedicated page.
swh spinner

Processing "take a new snapshot" request ...

Permalinks

To reference or cite the objects present in the Software Heritage archive, permalinks based on SoftWare Hash IDentifiers (SWHIDs) must be used.
Select below a type of object currently browsed in order to display its associated SWHID and permalink.

  • content
  • directory
  • revision
  • snapshot
origin badgecontent badge Iframe embedding
swh:1:cnt:5ecc68d30484a2380af00e942f59d83a1c55fe28
origin badgedirectory badge Iframe embedding
swh:1:dir:c790f1e33a5232044be137009743a5c8e7692d25
origin badgerevision badge
swh:1:rev:875465dbb701152a2de23d9377cbe4c2604c4ad0
origin badgesnapshot badge
swh:1:snp:788a101542b9bf7049cc9068e737c43bfa0ac40a
Citations

This interface enables to generate software citations, provided that the root directory of browsed objects contains a citation.cff or codemeta.json file.
Select below a type of object currently browsed in order to generate citations for them.

  • content
  • directory
  • revision
  • snapshot
Generate software citation in BibTex format (requires biblatex-software package)
Generating citation ...
Generate software citation in BibTex format (requires biblatex-software package)
Generating citation ...
Generate software citation in BibTex format (requires biblatex-software package)
Generating citation ...
Generate software citation in BibTex format (requires biblatex-software package)
Generating citation ...
Tip revision: 875465dbb701152a2de23d9377cbe4c2604c4ad0 authored by Gilles Raiche on 14 October 2009, 00:00:00 UTC
version 2.3.1
Tip revision: 875465d
nSeScree.rd
\name{nSeScree}
\alias{nSeScree}

\title{ Standard Error Scree and Coeffcient of Determination Procedures to
        Determine the Number of Components/Factors}

\description{
  This function computes the \emph{seScree} (\eqn{S_{Y \bullet X}}) indices
  (Zoski and Jurs, 1996) and the
  coefficient of determination indices of Nelson (2005) \eqn{R^2} for determining the
  number of components/factors to retain.
 }

\usage{
 nSeScree(x, cor=TRUE, model="components", details=TRUE, r2limen=0.75, ...)
 }

\arguments{
  \item{x}{       numeric: eigenvalues.}
  \item{cor}{     logical: if \code{TRUE} computes eigenvalues from a correlation
                  matrix, else from a covariance matrix}
  \item{model}{   character: \code{"components"} or \code{"factors"} }
  \item{details}{ logical: if \code{TRUE} also return detains about the computation for each eigenvalue.}
  \item{r2limen}{ numeric: criterion value retained for the coefficient of determination indices.}
  \item{...}{     variable: additionnal parameters to give to the \code{eigenComputes}
                  and \code{cor} or \code{cov} functions}
 }
 
\details{
  The Zoski and Jurs \eqn{S_{Y \bullet X}} index is the standard error of the estimate
  (predicted) eigenvalues by the regression from the \eqn{(k+1, \ldots, p)} subsequent
  rank of the eigenvalues. The standard error is computed as:
  
  (1)   \eqn{\qquad \qquad S_{Y \bullet X} =
         \sqrt{ \frac{(\lambda_k - \hat{\lambda}_k)^2} {p-2} } } \cr

  A value of \eqn{1/p} is choosen as the criteria to determine the number of
  components or factors to retain, \emph{p} corresponding to the number of
  variables.
  
  The Nelson \eqn{R^2} index is simply the multiple regresion coefficient of
  determination for the \eqn{k+1, \ldots, p} eigenvalues.
  Note that Nelson didn't give formal prescription for the criteria for this
  index. He only suggested that a value of 0.75 or more must be considered. More
  is to be done to explore adequate values.
 }


\value{
  \item{nFactors}{ numeric: number of components/factors retained by the seScree procedure. }
  \item{details}{  numeric: matrix of the details for each indices.}
 }
 
\references{
 Nasser, F. (2002). The performance of regression-based variations of the visual
   scree for determining the number of common factors. \emph{Educational and
   Psychological Measurement, 62(3)}, 397-419.
   
   
 Nelson, L. R. (2005). Some observations on the scree test, and on coefficient
   alpha. \emph{Thai Journal of Educational Research and Measurement, 3(1)}, 1-17.

   
 Zoski, K. and Jurs, S. (1993). Using multiple regression to determine the
   number of factors to retain in factor analysis. \emph{Multiple Linear Regression
   Viewpoints, 20}(1), 5-9.
 
 
 Zoski, K. and Jurs, S. (1996). An objective counterpart to the visuel scree
  test for factor analysis: the standard error scree. \emph{Educational and
  Psychological Measurement, 56}(3), 443-451.
 }

\author{ 
    Gilles Raiche \cr
    Centre sur les Applications des Modeles de Reponses aux Items (CAMRI) \cr
    Universite du Quebec a Montreal\cr
    \email{raiche.gilles@uqam.ca}, \url{http://www.er.uqam.ca/nobel/r17165/}
 }

\seealso{
 \code{\link{plotuScree}},
 \code{\link{nScree}},
 \code{\link{plotnScree}},
 \code{\link{plotParallel}}
 }

\examples{
## SIMPLE EXAMPLE OF SESCREE AND R2 ANALYSIS

 data(dFactors)
 eig      <- dFactors$Raiche$eigenvalues

 results  <- nSeScree(eig)
 results

 plotuScree(eig, main=paste(results$nFactors[1], " or ", results$nFactors[2],
                            " factors retained by the sescree and R2 procedures",
                            sep=""))
 }

\keyword{ multivariate }

back to top

Software Heritage — Copyright (C) 2015–2025, The Software Heritage developers. License: GNU AGPLv3+.
The source code of Software Heritage itself is available on our development forge.
The source code files archived by Software Heritage are available under their own copyright and licenses.
Terms of use: Archive access, API— Contact— JavaScript license information— Web API