Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Include latent variables #30

Open
ScottClaessens opened this issue Aug 14, 2024 · 0 comments
Open

Include latent variables #30

ScottClaessens opened this issue Aug 14, 2024 · 0 comments
Assignees
Labels
enhancement New feature or request

Comments

@ScottClaessens
Copy link
Owner

ScottClaessens commented Aug 14, 2024

Currently, the package does not allow for the inclusion of latent variables. I was thinking that a good way to implement this within our current architecture would be with nested lists. So instead of the case of separate variables

list(
  x = "bernoulli_logit",
  y = "ordered_logistic
)

we would have a nested list indicating that x is a latent variable made up of three manifest variables

list(
  x = list(
    x1 = "bernoulli_logit",
    x2 = "normal",
    x3 = "student_t"
  ),
  y = "ordered_logistic"
)

This isn't a priority, but probably something to think about for future iterations of the package.

@ScottClaessens ScottClaessens added the enhancement New feature or request label Aug 14, 2024
@ScottClaessens ScottClaessens self-assigned this Aug 14, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant