-
-
Notifications
You must be signed in to change notification settings - Fork 134
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixes #484
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -70,7 +70,7 @@ stan_biglm <- function(biglm, xbar, ybar, s_y, ..., | |
!inherits(biglm$qr, "bigqr") || is.null(biglm$terms)) | ||
stop("'biglm' must be of S3 class biglm as defined by the biglm package.") | ||
|
||
b <- coef(biglm) | ||
b <- biglm::coef(biglm) | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
bgoodri
via email
Author
Contributor
|
||
R <- diag(length(b)) | ||
R[upper.tri(R)] <- biglm$qr$rbar | ||
R <- sqrt(biglm$qr$D) * R | ||
|
@bgoodri This actually causes an error because there's no
coef
exported from biglm:and running r cmd check via github actions in #496 results in
What was the problem with just
coef(biglm)
?