Questions tagged [latent-variable]

Latent variables refer to variables that cannot be directly observed. These variable are defined in terms of observable variables. In narrow sense, "latent variable" is seen/modeled as what generates the observed variables in an implied data generation process. Also called hidden or lurking variables.

Common applications using latent variable models:

  • Hidden Markov models
  • Factor analysis
  • Principal component analysis
  • Partial least squares regression
  • Latent semantic analysis and Probabilistic latent semantic analysis
  • EM algorithms

Bayesian methods include:

  • Latent Dirichlet Allocation
  • The Chinese Restaurant Process is often used to provide a prior distribution over assignments of objects to latent categories.
  • The Indian buffet process

In graphical models, latent variables are represented by ovals/circles and observed values are represented by squares/rectangles:

enter image description here

See also https://en.wikipedia.org/wiki/Hidden_variable

468 questions
5
votes
1 answer

Dangers of treating residuals as latent variable?

I have data on variables ($y, x_1, x_2$), a linear model with the following form: $$ y = \beta_0 + \beta_1x_1 + \beta_2x_2 $$ and a theoretical assumption that the residuals represent a latent variable $x_3$: $$ \hat{y} - y = x_3 $$ What are the…
jtd
  • 579
  • 1
  • 4
  • 11
3
votes
1 answer

Explain: Latent Variable (e.g for Latent Dirichlet Allocation)

I am trying to understand the Latent Dirichlet Allocation but therefore I need the basic understanding about what exactly a latent variable is in that sense. I know that the basic idea of a latent variable is something unobserved (like an unknown…
1
vote
2 answers

Latent Variables

Suppose $Y$ is an ordinal variable such that $Y = 1,2,3,4$ corresponds to levels of impairment. So $Y=1$ is the last impaired and $Y = 4$ is the most impaired. What is the purpose of latent variables? That is what is the purpose of the following $$…
Bobby
  • 11
1
vote
0 answers

Marginalizing weights in PPCA: why does precision get inverted?

working on a personal project on latent variable models, and trying to understand a mathematical step: specifically, if we marginalize out the weights in PPCA, what is the marginal distribution of the observations? Consider a probabilistic PCA…
1
vote
0 answers

multilevel exploratory factor analysis with repeated measurements

I need to perform an exploratory factor analysis on a group of subjects where each subject has a collection of repeated measurements: routinely self-reported data for some period of time. My question is how to obtain the latent factors for the…
1
vote
0 answers

How are predicted values obtained for latent variables?

I am working with lavaan to conduct a latent variable analysis. I have a sequence of 5 indicators for a single latent variable. This is subsequently used in an structural equation model to inspect relations among several exogenous variables. To…
AdamO
  • 62,637
1
vote
1 answer

How to assess the assumption of conditional independence in latent class analysis (poLCA)?

I'm performing latent class modelling using poLCA package in R. Below is an example from the documentation. How to interpret G^2? And how to assess whether the assumption of conditional independence holds between each two of the manifest variables…
Orion
  • 214
1
vote
1 answer

Difference between latent and auxiliary variables

In a Gaussian mixture model, the labels assigned to the data points are often called auxiliary variables, whereas the cluster means and covariances are called latent variables. Since both types of variables are hidden (only the data is observed),…
0
votes
1 answer

Is the error a latent variable?

I am studying Structural Equations Modeling and we saw that there are "latent variables", usually extracted using factorial analysis, which we do not observe but that explain the covariance structure of the observed variables. My question is: is the…
0
votes
0 answers

Solution of a model with 1 latent variable and 2 observed variables

I have a problem that is formulated as latent variable model. Here we have a observed vector $\bar{x}$ and a latent variable scalar y, and an observed scalar z. The graphical model looks like $ \bar{x} \rightarrow y \rightarrow z $ i.e z depends…