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

bug: can't predict identity transformation on grad student employ dataset #450

Open
dshemetov opened this issue Mar 21, 2025 · 0 comments
Open

Comments

@dshemetov
Copy link
Contributor

Ran across this when testing Yeo Johnson. Dug down into lm and as far as I can tell, x and y are the same vector, but for some reason lm fits a model with a large negative constant offset (when it should be 0) and a coefficient of 1 (which is correct). Didn't dig further, since I wanted to focus on YJ.

filtered_data <- epidatasets::grad_employ_subset
r <- epi_recipe(filtered_data) %>%
    step_epi_lag(med_income_2y, lag = 0) %>%
    step_epi_ahead(med_income_2y, ahead = 0, role = "outcome") %>%
    step_epi_naomit()
  f <- frosting() %>%
    layer_predict()
wf <- epi_workflow(r, linear_reg()) %>%
    fit(filtered_data) %>%
    add_frosting(f)

# These should be the same (you can try this with another datsaset like JHU
out1 <- filtered_data %>% as_tibble()
out2 <- forecast(wf) %>% rename(med_income_2y = .pred)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant