stlearn.em.run_fa

stlearn.em.run_fa(adata: AnnData, n_factors: int = 20, tol: float = 0.01, max_iter: int = 1000, svd_method: str = 'randomized', iterated_power: int = 3, random_state: int = 2108, use_data: Optional[str] = None, copy: bool = False) Optional[AnnData][source]

Factor Analysis (FA) A simple linear generative model with Gaussian latent variables. The observations are assumed to be caused by a linear transformation of lower dimensional latent factors and added Gaussian noise. Without loss of generality the factors are distributed according to a Gaussian with zero mean and unit covariance. The noise is also zero mean and has an arbitrary diagonal covariance matrix. If we would restrict the model further, by assuming that the Gaussian noise is even isotropic (all diagonal entries are the same) we would obtain PPCA. FactorAnalysis performs a maximum likelihood estimate of the so-called loading matrix, the transformation of the latent variables to the observed ones, using SVD based approach.

Parameters:
  • adata – Annotated data matrix.

  • n_components – Dimensionality of latent space, the number of components of X that are obtained after transform. If None, n_components is set to the number of features.

  • tol – Stopping tolerance for log-likelihood increase.

  • max_iter – Maximum number of iterations.

  • noise_variance_init – The initial guess of the noise variance for each feature. If None, it defaults to np.ones(n_features)

  • svd_method – Which SVD method to use. If ‘lapack’ use standard SVD from scipy.linalg, if ‘randomized’ use fast randomized_svd function. Defaults to ‘randomized’. For most applications ‘randomized’ will be sufficiently precise while providing significant speed gains. Accuracy can also be improved by setting higher values for iterated_power. If this is not sufficient, for maximum precision you should choose ‘lapack’.

  • iterated_power – Number of iterations for the power method. 3 by default. Only used if svd_method equals ‘randomized’

  • random_state – If int, random_state is the seed used by the random number generator; If RandomState instance, random_state is the random number generator; If None, the random number generator is the RandomState instance used by np.random. Only used when svd_method equals ‘randomized’.

  • copy – Return a copy instead of writing to adata.

Returns:

  • Depending on copy, returns or updates adata with the following fields.

  • `X_fa` (numpy.ndarray (adata.obsm)) – Factor analysis representation of data.