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

Incorrect variable assigned but may not be used warning #671

Open
carschandler opened this issue Jul 20, 2024 · 0 comments
Open

Incorrect variable assigned but may not be used warning #671

carschandler opened this issue Jul 20, 2024 · 0 comments

Comments

@carschandler
Copy link

carschandler commented Jul 20, 2024

With the following minimal-ish code snippet, I'm getting a warning that model was assigned but may not be used:

boot_wls <- function(data, indices) {
  data <- data[indices, ]
  model <- lm(y ~ x1 + x2 + x3, data)
  w <- 1 / fitted(lm(abs(residuals(model)) ~ x1 + x2 + x3, data))^2
  w
}
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