Skip to content

Commit

Permalink
Patch lavaan glance bug (tidymodels#577)
Browse files Browse the repository at this point in the history
* patch lavaan glance bug

* Update NEWS.md
  • Loading branch information
mattle24 committed Mar 6, 2019
1 parent a997620 commit 87e5413
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions NEWS.md
Expand Up @@ -33,6 +33,7 @@ in the augment method for the chi sq test, .residuals column was renamed to .res
- `tidy.htest()` column names are now run through `make.names()` to ensure syntactic correctness (#549 by @karissawhiting)
- Added method `tidy.lm.beta()` to tidy `lm.beta` class models (#545 by @mattle24)
- Add feature for glance.biglm to return df.residual
- Patch bug in glance.lavaan (#577)


## Deprecations
Expand Down
2 changes: 1 addition & 1 deletion R/lavaan-tidiers.R
Expand Up @@ -125,7 +125,7 @@ glance.lavaan <- function(x, ...) {
"cfi"
)
) %>%
as_tibble() %>%
as_tibble(rownames = NA) %>%
tibble::rownames_to_column(var = "term") %>%
spread(., term, value) %>%
bind_cols(
Expand Down

0 comments on commit 87e5413

Please sign in to comment.